lightning-i2p/app/build.gradle

58 lines
1.4 KiB
Groovy
Raw Normal View History

2015-05-02 16:40:40 +00:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
minSdkVersion 14
targetSdkVersion 22
2015-05-06 00:57:42 +00:00
versionName "4.0.10a"
2015-05-02 16:40:40 +00:00
}
buildTypes {
debug {
minifyEnabled false
shrinkResources false
2015-05-03 11:56:22 +00:00
proguardFiles 'proguard-project.txt'
2015-05-02 16:40:40 +00:00
}
release {
2015-05-02 16:40:40 +00:00
minifyEnabled true
2015-05-04 16:07:15 +00:00
shrinkResources true
2015-05-03 11:56:22 +00:00
proguardFiles 'proguard-project.txt'
2015-05-02 16:40:40 +00:00
}
}
2015-05-03 11:56:22 +00:00
productFlavors {
lightningPlus {
buildConfigField "boolean", "FULL_VERSION", "true"
applicationId "acr.browser.lightning"
versionCode 78
}
lightningLite {
buildConfigField "boolean", "FULL_VERSION", "false"
applicationId "acr.browser.barebones"
versionCode 81
}
}
2015-05-03 11:56:22 +00:00
lintOptions {
abortOnError false
}
2015-05-02 16:40:40 +00:00
}
dependencies {
2015-06-03 14:50:51 +00:00
compile 'com.android.support:palette-v7:22.2.0'
compile 'com.android.support:appcompat-v7:22.2.0'
compile 'com.android.support:design:22.2.0'
compile 'org.jsoup:jsoup:1.8.1'
// Only Lightning Plus needs the proxy libraries
lightningPlusCompile 'net.i2p.android:client:0.7'
lightningPlusCompile(project(':libnetcipher'))
2015-07-18 21:59:43 +00:00
// git submodule foreach git reset --hard
// git submodule update --remote
2015-05-02 16:40:40 +00:00
}