summaryrefslogtreecommitdiff
path: root/build-system/tests/renamedApk/build.gradle
blob: 03c8f3a5fa516d79f9f316eb722e189b71e7a2d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
buildscript {
    repositories {
        maven { url '../../../../../out/repo' }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.12.1'
    }
}
apply plugin: 'com.android.application'

repositories {
  mavenCentral()
}

android {
    compileSdkVersion 19
    buildToolsVersion '19.1.0'

    buildTypes.debug {
        zipAlign true
    }
}

android.applicationVariants.all { variant ->
    variant.outputFile = file("$project.buildDir/${variant.name}.apk")
}