mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
127 lines
No EOL
4.3 KiB
Groovy
127 lines
No EOL
4.3 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'kotlin-android'
|
|
id 'kotlin-kapt'
|
|
id 'kotlin-android-extensions'
|
|
}
|
|
|
|
def tmpFilePath = System.getProperty("user.home") + "/work/_temp/keystore/"
|
|
def allFilesFromDir = new File(tmpFilePath).listFiles()
|
|
def prerelaseStoreFile = null
|
|
if (allFilesFromDir != null) {
|
|
prerelaseStoreFile = allFilesFromDir.first()
|
|
}
|
|
|
|
|
|
android {
|
|
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 30
|
|
buildToolsVersion "30.0.3"
|
|
|
|
defaultConfig {
|
|
applicationId "com.lagradost.cloudstream3"
|
|
minSdkVersion 21
|
|
targetSdkVersion 30
|
|
versionCode 17
|
|
versionName "1.3.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
kapt {
|
|
includeCompileClasspath = true
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
debuggable true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
prerelease {
|
|
applicationIdSuffix ".prerelease"
|
|
buildConfigField("boolean", "BETA", "true")
|
|
signingConfig signingConfigs.prerelease
|
|
versionNameSuffix '-PRE'
|
|
minifyEnabled false
|
|
debuggable true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
freeCompilerArgs = ['-Xjvm-default=compatibility']
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url 'https://github.com/psiegman/mvn-repo/raw/master/releases'
|
|
}
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
implementation 'androidx.core:core-ktx:1.6.0'
|
|
implementation 'androidx.appcompat:appcompat:1.3.1'
|
|
implementation 'com.google.android.material:material:1.4.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5'
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
|
|
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'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
|
|
|
implementation "io.karn:khttp-android:0.1.2"
|
|
implementation 'org.jsoup:jsoup:1.13.1'
|
|
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.11.3"
|
|
|
|
implementation("com.google.android.material:material:1.4.0")
|
|
|
|
implementation "androidx.preference:preference-ktx:1.1.1"
|
|
|
|
implementation 'com.github.bumptech.glide:glide:4.12.0'
|
|
implementation 'jp.wasabeef:glide-transformations:4.0.0'
|
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
|
|
|
// Exoplayer
|
|
implementation 'com.google.android.exoplayer:exoplayer:2.14.2'
|
|
implementation 'com.google.android.exoplayer:extension-cast:2.14.2'
|
|
implementation "com.google.android.exoplayer:extension-mediasession:2.14.2"
|
|
//implementation "com.google.android.exoplayer:extension-leanback:2.14.0"
|
|
|
|
// 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"
|
|
|
|
// subtitle color picker
|
|
implementation 'com.jaredrummler:colorpicker:1.1.0'
|
|
|
|
//run JS
|
|
implementation 'org.mozilla:rhino:1.7R4'
|
|
} |