lightning-i2p/app/build.gradle

68 lines
2.0 KiB
Groovy
Raw Normal View History

2015-05-02 16:40:40 +00:00
apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'
2015-05-02 16:40:40 +00:00
android {
compileSdkVersion 23
buildToolsVersion "23.0.0"
2015-05-02 16:40:40 +00:00
defaultConfig {
minSdkVersion 14
targetSdkVersion 23
2015-08-06 02:49:42 +00:00
versionName "4.1.1a"
2015-05-02 16:40:40 +00:00
}
2015-08-21 20:57:19 +00:00
sourceSets {
lightningPlus.setRoot('src/LightningPlus')
lightningLite.setRoot('src/LightningLite')
}
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
}
}
productFlavors {
lightningPlus {
buildConfigField "boolean", "FULL_VERSION", "true"
applicationId "acr.browser.lightning"
2015-08-06 02:49:42 +00:00
versionCode 80
}
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 {
compile 'com.android.support:palette-v7:23.0.1'
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:design:23.0.1'
compile 'com.android.support:recyclerview-v7:23.0.1'
2015-09-12 02:14:26 +00:00
compile 'org.jsoup:jsoup:1.8.3'
compile 'com.squareup:otto:1.3.8'
compile 'com.google.dagger:dagger:2.0.1'
apt 'com.google.dagger:dagger-compiler:2.0.1'
// Only Lightning Plus needs the proxy libraries
lightningPlusCompile 'net.i2p.android:client:0.7'
// Use the following code to update the libnetcipher submodule
2015-07-18 21:59:43 +00:00
// git submodule foreach git reset --hard
// git submodule update --remote
lightningPlusCompile(project(':libnetcipher'))
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.3.1'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3.1'
provided 'javax.annotation:jsr250-api:1.0'
2015-08-21 20:57:19 +00:00
}