You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.3 KiB
56 lines
1.3 KiB
apply plugin: 'com.android.application' |
|
|
|
android { |
|
compileSdkVersion 22 |
|
buildToolsVersion "22.0.1" |
|
|
|
defaultConfig { |
|
minSdkVersion 14 |
|
targetSdkVersion 22 |
|
versionName "4.0.10a" |
|
} |
|
|
|
buildTypes { |
|
debug { |
|
minifyEnabled true |
|
shrinkResources true |
|
proguardFiles 'proguard-project.txt' |
|
} |
|
|
|
release { |
|
minifyEnabled true |
|
shrinkResources true |
|
proguardFiles 'proguard-project.txt' |
|
} |
|
} |
|
|
|
productFlavors { |
|
LightningPlus { |
|
buildConfigField "boolean", "FULL_VERSION", "true" |
|
applicationId "acr.browser.lightning" |
|
versionCode 78 |
|
} |
|
|
|
LightningFree { |
|
buildConfigField "boolean", "FULL_VERSION", "false" |
|
applicationId "acr.browser.barebones" |
|
versionCode 81 |
|
} |
|
} |
|
|
|
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.2.0' |
|
compile 'com.android.support:appcompat-v7:22.2.0' |
|
compile 'org.jsoup:jsoup:1.8.1' |
|
compile 'net.i2p.android:client:0.7@aar' |
|
}
|
|
|