lightning-i2p/app/build.gradle

56 lines
1.5 KiB
Groovy
Raw Normal View History

2015-05-02 12:40:40 -04:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.0"
2015-05-02 12:40:40 -04:00
defaultConfig {
minSdkVersion 14
targetSdkVersion 23
2015-08-05 22:49:42 -04:00
versionName "4.1.1a"
2015-05-02 12:40:40 -04:00
}
2015-08-21 16:57:19 -04:00
sourceSets {
lightningPlus.setRoot('src/LightningPlus')
lightningLite.setRoot('src/LightningLite')
}
2015-05-02 12:40:40 -04:00
buildTypes {
debug {
minifyEnabled false
shrinkResources false
2015-05-03 13:56:22 +02:00
proguardFiles 'proguard-project.txt'
2015-05-02 12:40:40 -04:00
}
release {
2015-05-02 12:40:40 -04:00
minifyEnabled true
2015-05-04 12:07:15 -04:00
shrinkResources true
2015-05-03 13:56:22 +02:00
proguardFiles 'proguard-project.txt'
2015-05-02 12:40:40 -04:00
}
}
productFlavors {
lightningPlus {
buildConfigField "boolean", "FULL_VERSION", "true"
applicationId "acr.browser.lightning"
2015-08-05 22:49:42 -04:00
versionCode 80
}
lightningLite {
buildConfigField "boolean", "FULL_VERSION", "false"
applicationId "acr.browser.barebones"
versionCode 81
}
}
2015-05-03 13:56:22 +02:00
lintOptions {
abortOnError false
}
2015-05-02 12:40:40 -04:00
}
dependencies {
compile 'com.android.support:palette-v7:23.0.0'
compile 'com.android.support:appcompat-v7:23.0.0'
compile 'com.android.support:design:23.0.0'
compile 'com.android.support:recyclerview-v7:23.0.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 17:59:43 -04:00
// git submodule foreach git reset --hard
// git submodule update --remote
2015-08-21 16:57:19 -04:00
}