lightning-i2p/app/build.gradle
str4d 6e8da9f6d3 Fix for I2PAndroidHelper.isI2PAndroidRunning() always returning false
Requires v0.7 of the I2P client library, which will be released once I2P 0.9.20
is released.
2015-05-26 03:25:47 +00:00

44 lines
1.0 KiB
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "acr.browser.lightning"
minSdkVersion 14
targetSdkVersion 22
versionCode 78
versionName "4.0.10a"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles 'proguard-project.txt'
}
debug {
minifyEnabled true
shrinkResources true
proguardFiles 'proguard-project.txt'
}
}
lintOptions {
abortOnError false
}
}
dependencies {
compile(project(':libnetcipher')) {
// Exclude any support-v4 modules because appcompat-v7 will import the latest
exclude module: 'support-v4'
exclude module: 'android-support-v4'
}
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'
}