2021-04-30 17:20:15 +00:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
id 'kotlin-android'
|
2021-05-15 23:37:42 +00:00
|
|
|
id 'kotlin-android-extensions'
|
2021-04-30 17:20:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 30
|
|
|
|
buildToolsVersion "30.0.3"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.lagradost.cloudstream3"
|
|
|
|
minSdkVersion 21
|
|
|
|
targetSdkVersion 30
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
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'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = '1.8'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2021-05-18 13:43:32 +00:00
|
|
|
maven {
|
|
|
|
url 'https://github.com/psiegman/mvn-repo/raw/master/releases'
|
|
|
|
}
|
2021-04-30 17:20:15 +00:00
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2021-06-06 18:06:01 +00:00
|
|
|
implementation 'androidx.core:core-ktx:1.5.0'
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.3.0'
|
2021-05-12 21:51:02 +00:00
|
|
|
implementation 'com.google.android.material:material:1.3.0'
|
2021-04-30 17:20:15 +00:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
|
|
|
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-04-30 17:20:15 +00:00
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.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"
|
2021-05-12 21:51:02 +00:00
|
|
|
|
|
|
|
implementation("com.google.android.material:material:1.3.0")
|
|
|
|
|
|
|
|
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'
|
|
|
|
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
|
|
|
|
implementation 'com.google.android.exoplayer:exoplayer:2.14.0'
|
|
|
|
implementation 'com.google.android.exoplayer:extension-cast:2.14.0'
|
|
|
|
implementation "com.google.android.exoplayer:extension-mediasession:2.14.0"
|
2021-06-06 18:06:01 +00:00
|
|
|
//implementation "com.google.android.exoplayer:extension-leanback:2.14.0"
|
2021-04-30 17:20:15 +00:00
|
|
|
}
|