LeOS-Genesis/app/build.gradle

140 lines
4.2 KiB
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
apply plugin: 'maven'
2019-05-10 20:44:08 +02:00
apply plugin: 'io.fabric'
2019-03-24 14:37:13 +01:00
ext {
2019-05-30 21:19:30 +02:00
geckoviewChannel = ""
2019-07-13 18:20:04 +02:00
geckoviewVersion = "67.0.20190613202504"
2019-03-24 14:37:13 +01:00
}
2019-05-10 20:44:08 +02:00
2019-06-15 19:13:52 +02:00
2019-05-10 20:44:08 +02:00
repositories {
maven {
url "https://maven.mozilla.org/maven2/"
mavenLocal()
mavenCentral()
google()
jcenter()
maven { url "https://raw.githubusercontent.com/guardianproject/gpmaven/master" }
}
}
android {
compileSdkVersion 28
defaultConfig {
2019-04-28 18:54:22 +02:00
applicationId "com.darkweb.genesissearchengine"
minSdkVersion 21
targetSdkVersion 28
2019-05-10 20:44:08 +02:00
versionCode 126
versionName "126.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
2019-05-10 20:44:08 +02:00
}
2019-03-24 14:37:13 +01:00
flavorDimensions "abi"
// Note: compileOptions is only required for minSdkVersion < 24
2019-05-10 20:44:08 +02:00
// Note: compileOptions is only required for minSdkVersion < 26 (not 24)
2019-03-24 14:37:13 +01:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2019-05-10 20:44:08 +02:00
flavorDimensions "abi"
2019-03-24 14:37:13 +01:00
productFlavors {
2019-07-13 18:20:04 +02:00
/*arm {
versionCode 180
versionName "180"
2019-05-10 20:44:08 +02:00
dimension "abi"
2019-05-30 21:19:30 +02:00
buildConfigField "String", "VARIANT", "\"arm\""
2019-06-24 21:48:05 +02:00
}
2019-05-10 20:44:08 +02:00
aarch64 {
2019-07-13 18:20:04 +02:00
versionCode 181
versionName "181"
2019-06-24 21:48:05 +02:00
dimension "abi"
buildConfigField "String", "VARIANT", "\"aarch64\""
2019-07-13 18:20:04 +02:00
}*/
2019-05-10 20:44:08 +02:00
x86 {
2019-07-13 18:20:04 +02:00
versionCode 182
versionName "182"
2019-05-10 20:44:08 +02:00
dimension "abi"
2019-05-30 21:19:30 +02:00
buildConfigField "String", "VARIANT", "\"i686\""
2019-06-15 19:13:52 +02:00
}
2019-07-13 18:20:04 +02:00
/*x86_64 {
versionCode 183
versionName "183"
2019-05-30 21:19:30 +02:00
dimension "abi"
buildConfigField "String", "VARIANT", "\"x86_64\""
2019-07-13 18:20:04 +02:00
}*/
2019-03-24 14:37:13 +01:00
}
2019-05-10 20:44:08 +02:00
buildTypes {
release {
minifyEnabled false
2019-05-10 20:44:08 +02:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
splits {
abi {
enable true
reset()
include 'arm64-v8a'
2019-05-26 13:43:13 +02:00
include 'x86'
include 'armeabi-v7a'
include 'x86_64'
2019-05-10 20:44:08 +02:00
universalApk true
}
}
2019-06-24 21:48:05 +02:00
}
2019-05-10 20:44:08 +02:00
}
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion '26.1.0'
}
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
2019-06-24 21:48:05 +02:00
implementation 'com.android.support.constraint:constraint-layout:2.0.0-beta2'
implementation 'cz.msebera.android:httpclient:4.5.8'
2019-05-10 20:44:08 +02:00
2019-07-13 18:20:04 +02:00
x86Implementation "org.mozilla.geckoview:geckoview-x86:67.0.20190613202504"
//x86_64Implementation "org.mozilla.geckoview:geckoview-x86_64:67.0.20190613202504"
//armImplementation "org.mozilla.geckoview:geckoview-armeabi-v7a:67.0.20190613202504"
//aarch64Implementation "org.mozilla.geckoview:geckoview-arm64-v8a:67.0.20190613202504"
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.preference:preference:1.1.0-alpha02'
2019-05-10 20:44:08 +02:00
2019-06-15 19:13:52 +02:00
implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'
2019-05-10 20:44:08 +02:00
implementation 'com.crowdfire.cfalertdialog:cfalertdialog:1.1.0'
implementation 'com.github.jehy:Tor-Onion-Proxy-Library:0.0.7'
2019-06-24 21:48:05 +02:00
implementation 'org.slf4j:slf4j-api:2.0.0-alpha0'
implementation 'org.slf4j:slf4j-android:1.7.26'
implementation 'com.google.android.gms:play-services-ads:18.0.0'
2019-05-10 20:44:08 +02:00
implementation 'com.android.support:design:28.0.0'
2019-07-13 18:20:04 +02:00
androidTestImplementation 'androidx.test:runner:1.2.0-alpha03'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0-alpha03'
2019-06-15 19:13:52 +02:00
implementation('com.crashlytics.sdk.android:crashlytics:2.10.1@aar') {
transitive = true;
}
2019-06-24 21:48:05 +02:00
implementation 'com.android.support:appcompat-v7:28.0.0'
}
2019-06-24 21:48:05 +02:00
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'