2016-06-29 04:20:20 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-03-02 04:08:48 +00:00
|
|
|
compileSdkVersion 25
|
2017-10-31 13:42:01 +00:00
|
|
|
buildToolsVersion '26.0.2'
|
2016-06-29 04:20:20 +00:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.torproject.android"
|
2017-06-09 08:12:40 +00:00
|
|
|
minSdkVersion 16
|
2017-03-02 04:08:48 +00:00
|
|
|
targetSdkVersion 25
|
2016-06-29 04:20:20 +00:00
|
|
|
}
|
2016-10-20 14:50:19 +00: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
|
|
|
|
}
|
2016-06-29 04:20:20 +00:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
|
|
}
|
|
|
|
}
|
2017-10-31 13:42:01 +00:00
|
|
|
|
|
|
|
flavorDimensions "free"
|
|
|
|
|
2017-06-09 06:01:42 +00:00
|
|
|
productFlavors {
|
|
|
|
minimalperm {
|
2017-10-31 13:42:01 +00:00
|
|
|
dimension "free"
|
2017-06-09 06:01:42 +00:00
|
|
|
minSdkVersion 16
|
|
|
|
applicationId 'org.torproject.android'
|
2017-06-09 14:19:47 +00:00
|
|
|
targetSdkVersion 23
|
|
|
|
maxSdkVersion 23
|
2017-10-25 15:46:15 +00:00
|
|
|
versionCode 15500000
|
|
|
|
versionName '15.5.0-RC-1-multi-SDK16'
|
2017-06-09 08:12:40 +00:00
|
|
|
}
|
|
|
|
fullperm {
|
2017-10-31 13:42:01 +00:00
|
|
|
dimension "free"
|
2017-06-09 08:12:40 +00:00
|
|
|
minSdkVersion 23
|
|
|
|
applicationId 'org.torproject.android'
|
|
|
|
targetSdkVersion 25
|
2017-10-25 15:46:15 +00:00
|
|
|
versionCode 15500001
|
|
|
|
versionName '15.5.0-RC-1-multi-SDK23'
|
2017-06-09 14:19:47 +00:00
|
|
|
}
|
2017-06-09 06:01:42 +00:00
|
|
|
}
|
2016-06-29 04:20:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':orbotservice')
|
2017-10-20 04:15:24 +00:00
|
|
|
compile 'com.android.support:support-v4:25.3.1'
|
|
|
|
compile 'com.android.support:appcompat-v7:25.3.1'
|
|
|
|
compile 'com.android.support:design:25.3.1'
|
2016-06-29 04:20:20 +00:00
|
|
|
}
|