2019-03-05 07:33:58 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
apply plugin: 'maven'
|
|
|
|
|
2019-03-24 14:37:13 +01:00
|
|
|
ext {
|
|
|
|
geckoviewChannel = "nightly"
|
2019-04-06 15:44:27 +02:00
|
|
|
geckoviewVersion = "66.0.20181225095124"
|
2019-03-24 14:37:13 +01:00
|
|
|
}
|
2019-03-05 07:33:58 +01:00
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.example.myapplication"
|
|
|
|
minSdkVersion 21
|
|
|
|
targetSdkVersion 28
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
2019-03-24 14:37:13 +01:00
|
|
|
|
|
|
|
flavorDimensions "abi"
|
|
|
|
// Note: compileOptions is only required for minSdkVersion < 24
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
|
|
|
|
productFlavors {
|
|
|
|
x86 { dimension "abi" }
|
|
|
|
x86_64 { dimension "abi" }
|
|
|
|
arm { dimension "abi" }
|
|
|
|
aarch64 { dimension "abi" }
|
|
|
|
}
|
|
|
|
|
2019-03-05 07:33:58 +01:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
|
|
|
implementation 'com.google.android.gms:play-services-ads:17.1.1'
|
|
|
|
implementation "cz.msebera.android:httpclient:4.4.1.2"
|
2019-03-16 19:26:42 +01:00
|
|
|
implementation 'info.guardianproject.netcipher:netcipher:2.0.0-alpha1'
|
|
|
|
implementation 'info.guardianproject.netcipher:netcipher-okhttp3:2.0.0-alpha1'
|
2019-03-24 14:37:13 +01:00
|
|
|
armImplementation "org.mozilla.geckoview:geckoview-${geckoviewChannel}-armeabi-v7a:${geckoviewVersion}"
|
|
|
|
aarch64Implementation "org.mozilla.geckoview:geckoview-${geckoviewChannel}-arm64-v8a:${geckoviewVersion}"
|
|
|
|
implementation 'com.yarolegovich:lovely-dialog:1.1.0'
|
2019-03-05 07:33:58 +01:00
|
|
|
}
|
|
|
|
|
2019-03-27 19:07:03 +01:00
|
|
|
apply plugin: 'com.android.application'
|