LeOS-Genesis/app/build.gradle

137 lines
4.1 KiB
Groovy
Raw Normal View History

2022-03-29 21:55:20 +02:00
plugins {
id "com.jetbrains.python.envs" version "0.0.26"
}
2021-05-14 14:43:40 +02:00
2021-04-18 10:37:16 +02:00
apply plugin: 'com.android.application'
2022-03-29 21:55:20 +02:00
apply from: 'variables.gradle'
2021-01-18 11:07:12 +01:00
apply plugin: 'kotlin-android'
2020-01-24 16:23:31 +01:00
2022-03-29 21:55:20 +02:00
2020-01-24 16:23:31 +01:00
android {
2021-05-10 17:37:53 +02:00
2021-04-18 10:37:16 +02:00
compileSdkVersion project.ext.compile_sdk_version
ndkVersion project.ext.ndk_version
2020-02-28 19:10:00 +01:00
2020-01-24 16:23:31 +01:00
defaultConfig {
2021-04-18 10:37:16 +02:00
applicationId project.ext.application_id
minSdkVersion project.ext.min_sdk_version
targetSdkVersion project.ext.target_sdk_version
2021-05-10 17:37:53 +02:00
versionCode project.ext.vcode
versionName project.ext.vname
ndk {
debugSymbolLevel project.ext.debugSymbolLevel
}
2020-01-24 16:23:31 +01:00
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2021-05-10 17:37:53 +02:00
buildTypes {
release {
minifyEnabled project.ext.minifyEnabled
shrinkResources project.ext.shrinkResources
proguardFiles getDefaultProguardFile(project.ext.proguard_file), project.ext.proguard_rule
}
}
2020-01-24 16:23:31 +01:00
flavorDimensions project.ext.dimen
productFlavors {
2021-05-10 17:37:53 +02:00
genesis {
2021-04-18 10:37:16 +02:00
dimension project.ext.dimen
2020-01-24 16:23:31 +01:00
}
2021-05-10 17:37:53 +02:00
}
splits {
abi {
reset()
2022-02-18 21:45:24 +01:00
enable project.ext.splitEnabled
2021-05-10 17:37:53 +02:00
include project.ext.abi_x86, project.ext.abi_x86_x64, project.ext.abi_arm64, project.ext.abi_armeabi
2020-01-24 16:23:31 +01:00
}
2020-10-20 16:55:08 +02:00
}
2020-01-24 16:23:31 +01:00
2022-02-18 21:45:24 +01:00
bundle {
abi {
enableSplit = true
}
}
2020-10-20 16:55:08 +02:00
sourceSets {
main {
2021-04-18 10:37:16 +02:00
res.srcDirs = project.ext.resource_directories
2020-01-24 16:23:31 +01:00
}
2020-02-28 19:10:00 +01:00
2021-05-10 17:37:53 +02:00
genesisRelease.root = project.ext.releaseRoot
2020-01-24 16:23:31 +01:00
}
}
dependencies {
2022-03-29 21:55:20 +02:00
2022-04-02 01:13:29 +02:00
/* File Support Dependencies */
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation files('libs/httpclientandroidlib-1.2.1.jar')
2022-03-29 21:55:20 +02:00
2022-04-02 01:13:29 +02:00
/* Android Support Repository Dependencies */
2022-03-29 21:55:20 +02:00
2022-04-02 01:13:29 +02:00
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0'
implementation 'com.google.android.material:material:1.5.0'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.6.10'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.10'
implementation 'org.apache.commons:commons-text:1.3'
implementation 'androidx.work:work-runtime-ktx:2.8.0-alpha01'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
implementation 'com.android.support.constraint:constraint-layout:2.0.4'
implementation 'androidx.preference:preference-ktx:1.2.0'
implementation 'com.android.support:support-annotations:29.0.0'
2022-03-29 21:55:20 +02:00
implementation 'androidx.appcompat:appcompat:1.4.1'
/* Firefox ABI Splits */
2022-04-02 01:13:29 +02:00
implementation "androidx.compose.foundation:foundation:1.1.1"
2022-03-29 21:55:20 +02:00
implementation "org.mozilla.components:browser-engine-gecko:100.0.20220327143103"
implementation "org.mozilla.components:support-rusthttp:100.0.20220327143103"
implementation "org.mozilla.components:support-rustlog:100.0.20220327143103"
implementation "org.mozilla.components:browser-icons:100.0.20220327143103"
implementation "org.mozilla.components:concept-fetch:100.0.20220327143103"
implementation "org.mozilla.components:concept-base:100.0.20220327143103"
implementation "org.mozilla.components:support-utils:100.0.20220327143103"
2022-04-02 01:13:29 +02:00
/* Analytics */
2021-04-18 10:37:16 +02:00
2022-03-14 21:55:07 +01:00
implementation 'com.flurry.android:analytics:13.1.0@aar'
2020-01-24 16:23:31 +01:00
2021-04-18 10:37:16 +02:00
/* Ads Manager */
2022-04-02 01:13:29 +02:00
implementation 'com.facebook.android:audience-network-sdk:6.8.0'
implementation 'com.applovin:applovin-sdk:11.3.1'
implementation 'com.applovin.mediation:facebook-adapter:6.8.0.12'
2021-04-18 10:37:16 +02:00
/* Orbot Service */
2020-01-24 16:23:31 +01:00
2021-05-05 15:37:08 +02:00
implementation project(path: ':orbotmanager')
2020-01-24 16:23:31 +01:00
2021-04-18 10:37:16 +02:00
/* Helper Libraries */
2022-04-02 01:13:29 +02:00
2021-06-03 16:44:08 +02:00
implementation 'com.coolerfall:android-http-download-manager:1.6.3'
2021-10-03 13:22:57 +02:00
implementation 'com.android.volley:volley:1.2.1'
2021-07-07 20:42:42 +02:00
implementation "net.zetetic:android-database-sqlcipher:4.4.3"
2022-02-09 15:20:58 +01:00
implementation "androidx.sqlite:sqlite-ktx:2.2.0"
2021-07-07 20:42:42 +02:00
implementation 'androidx.palette:palette-ktx:1.0.0'
2022-04-02 01:13:29 +02:00
implementation 'org.jsoup:jsoup:1.13.1'
2022-03-29 21:55:20 +02:00
2020-01-24 16:23:31 +01:00
}
2021-05-10 17:37:53 +02:00
2022-03-29 21:55:20 +02:00