aboutsummaryrefslogtreecommitdiff
path: root/tests/renamedApk/build.gradle
blob: b16da8ae42e37235e35d1896088118a59a5c3f51 (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/host/gradle/repo' }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.6.0-SNAPSHOT'
    }
}
apply plugin: 'android'

repositories {
  mavenCentral()
}

android {
    compileSdkVersion 15
    buildToolsVersion "18.0.1"

    buildTypes.debug {
        zipAlign true
    }
}

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