tor-android/app/build.gradle

53 lines
1.5 KiB
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
android {
2017-03-02 05:08:48 +01:00
compileSdkVersion 25
buildToolsVersion "25"
defaultConfig {
applicationId "org.torproject.android"
2017-06-09 10:12:40 +02:00
minSdkVersion 16
2017-03-02 05:08:48 +01:00
targetSdkVersion 25
}
2016-10-20 16:50:19 +02:00
lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
productFlavors {
minimalperm {
minSdkVersion 16
applicationId 'org.torproject.android'
targetSdkVersion 23
maxSdkVersion 23
2017-06-09 10:12:40 +02:00
versionCode 15420000
versionName '15.4.2-RC-1-multi-SDK16'
}
fullperm {
minSdkVersion 23
applicationId 'org.torproject.android'
targetSdkVersion 25
versionCode 15420001
versionName '15.4.2-RC-1-multi-SDK23'
}
orbotgo {
minSdkVersion 16
applicationId 'org.torproject.android.go'
targetSdkVersion 25
}
}
}
dependencies {
compile project(':orbotservice')
2017-03-02 05:08:48 +01:00
compile 'com.android.support:support-v4:25.0.0'
compile 'com.android.support:appcompat-v7:25.0.0'
compile 'com.android.support:design:25.0.0'
}