lightning-i2p/app/build.gradle

44 lines
1.0 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 {
applicationId "acr.browser.lightning"
minSdkVersion 14
targetSdkVersion 22
2015-05-06 00:57:42 +00:00
versionCode 78
versionName "4.0.10a"
2015-05-02 16:40:40 +00:00
}
buildTypes {
release {
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
}
debug {
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
lintOptions {
abortOnError false
}
2015-05-02 16:40:40 +00:00
}
dependencies {
compile(project(':libnetcipher')) {
// Exclude any support-v4 modules because appcompat-v7 will import the latest
2015-05-06 00:57:42 +00:00
exclude module: 'support-v4'
exclude module: 'android-support-v4'
}
2015-05-02 16:40:40 +00:00
compile 'com.android.support:palette-v7:22.1.1'
compile 'com.android.support:appcompat-v7:22.1.1'
compile 'org.jsoup:jsoup:1.8.1'
compile 'net.i2p.android:client:0.7@aar'
2015-05-02 16:40:40 +00:00
}