AquaStream/app/build.gradle

145 lines
5.0 KiB
Groovy
Raw Normal View History

2021-04-30 17:20:15 +00:00
plugins {
id 'com.android.application'
id 'kotlin-android'
2021-07-26 18:29:04 +00:00
id 'kotlin-kapt'
2021-07-28 19:14:45 +00:00
id 'kotlin-android-extensions'
2021-04-30 17:20:15 +00:00
}
2021-08-18 10:31:16 +00:00
def tmpFilePath = System.getProperty("user.home") + "/work/_temp/keystore/"
def allFilesFromDir = new File(tmpFilePath).listFiles()
def prerelaseStoreFile = null
if (allFilesFromDir != null) {
prerelaseStoreFile = allFilesFromDir.first()
}
2021-04-30 17:20:15 +00:00
android {
2021-10-02 23:37:12 +00:00
testOptions {
unitTests.returnDefaultValues = true
}
2021-08-18 10:31:16 +00:00
signingConfigs {
prerelease {
if (prerelaseStoreFile != null) {
storeFile = file(prerelaseStoreFile)
storePassword System.getenv("SIGNING_STORE_PASSWORD")
keyAlias System.getenv("SIGNING_KEY_ALIAS")
keyPassword System.getenv("SIGNING_KEY_PASSWORD")
}
}
}
compileSdkVersion 31
2021-04-30 17:20:15 +00:00
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.lagradost.cloudstream3"
minSdkVersion 21
targetSdkVersion 31
versionCode 27
versionName "1.9.12"
2021-08-29 17:15:09 +00:00
resValue "string", "app_version",
"${defaultConfig.versionName}${versionNameSuffix ?: ""}"
buildConfigField("String", "BUILDDATE", "new java.text.SimpleDateFormat(\"yyyy-MM-dd HH:mm\").format(new java.util.Date(" + System.currentTimeMillis() + "L));")
2021-04-30 17:20:15 +00:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2021-07-26 18:29:04 +00:00
kapt {
includeCompileClasspath = true
}
2021-04-30 17:20:15 +00:00
}
buildTypes {
release {
minifyEnabled false
2021-05-23 17:07:43 +00:00
debuggable true
2021-04-30 17:20:15 +00:00
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
2021-08-18 10:31:16 +00:00
prerelease {
2021-08-19 21:26:02 +00:00
applicationIdSuffix ".prerelease"
2021-08-18 10:31:16 +00:00
buildConfigField("boolean", "BETA", "true")
signingConfig signingConfigs.prerelease
versionNameSuffix '-PRE'
minifyEnabled false
debuggable true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
2021-04-30 17:20:15 +00:00
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
2021-07-26 18:29:04 +00:00
freeCompilerArgs = ['-Xjvm-default=compatibility']
2021-04-30 17:20:15 +00:00
}
}
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
2021-10-02 23:37:12 +00:00
testImplementation 'org.json:json:20180813'
2021-04-30 17:20:15 +00:00
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
2021-07-26 18:29:04 +00:00
implementation 'androidx.core:core-ktx:1.6.0'
2021-08-04 14:28:36 +00:00
implementation 'androidx.appcompat:appcompat:1.3.1'
2021-07-26 18:29:04 +00:00
implementation 'com.google.android.material:material:1.4.0'
2021-09-30 12:55:56 +00:00
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
2021-04-30 17:20:15 +00:00
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
2021-05-12 21:51:02 +00:00
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1'
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
testImplementation 'junit:junit:4.13.2'
2021-07-26 18:29:04 +00:00
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
2021-04-30 17:20:15 +00:00
2021-09-30 12:55:56 +00:00
//implementation "io.karn:khttp-android:0.1.2" //okhttp instead
2021-04-30 17:20:15 +00:00
implementation 'org.jsoup:jsoup:1.13.1'
2021-09-30 12:55:56 +00:00
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.12.3"
2021-05-12 21:51:02 +00:00
2021-07-26 18:29:04 +00:00
implementation("com.google.android.material:material:1.4.0")
2021-05-12 21:51:02 +00:00
implementation "androidx.preference:preference-ktx:1.1.1"
2021-05-15 23:37:42 +00:00
implementation 'com.github.bumptech.glide:glide:4.12.0'
kapt 'com.github.bumptech.glide:compiler:4.12.0'
2021-05-15 23:37:42 +00:00
implementation 'jp.wasabeef:glide-transformations:4.0.0'
2021-05-18 22:13:16 +00:00
2021-06-06 18:06:01 +00:00
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
2021-05-22 22:25:56 +00:00
// Exoplayer
2021-09-30 12:55:56 +00:00
implementation 'com.google.android.exoplayer:exoplayer:2.15.1'
implementation 'com.google.android.exoplayer:extension-cast:2.15.1'
implementation "com.google.android.exoplayer:extension-mediasession:2.15.1"
2021-06-06 18:06:01 +00:00
//implementation "com.google.android.exoplayer:extension-leanback:2.14.0"
2021-07-26 18:29:04 +00:00
// Bug reports
implementation "ch.acra:acra-core:5.8.4"
implementation "ch.acra:acra-toast:5.8.4"
compileOnly "com.google.auto.service:auto-service-annotations:1.0"
//either for java sources:
annotationProcessor "com.google.auto.service:auto-service:1.0"
//or for kotlin sources (requires kapt gradle plugin):
kapt "com.google.auto.service:auto-service:1.0"
2021-08-06 20:55:11 +00:00
// subtitle color picker
implementation 'com.jaredrummler:colorpicker:1.1.0'
2021-08-14 17:31:27 +00:00
//run JS
implementation 'org.mozilla:rhino:1.7R4'
2021-08-30 17:11:04 +00:00
// TorrentStream
2021-09-19 22:46:05 +00:00
//implementation 'com.github.TorrentStream:TorrentStream-Android:2.7.0'
// Downloading
2021-09-30 12:55:56 +00:00
implementation "androidx.work:work-runtime:2.7.0-rc01"
implementation "androidx.work:work-runtime-ktx:2.7.0-rc01"
// Networking
implementation "com.squareup.okhttp3:okhttp:4.9.0"
2021-04-30 17:20:15 +00:00
}