summaryrefslogtreecommitdiff
path: root/build-system/tests/renamedApk/build.gradle
blob: 5292e713b37eea3197e0e2962a4479724ec11620 (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.11.1'
    }
}
apply plugin: 'android'

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")
}