2021-12-09 18:01:40 +05:30
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
id 'kotlin-android'
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdk 31
|
|
|
|
|
|
|
|
defaultConfig {
|
2022-02-01 21:22:06 +05:30
|
|
|
applicationId 'com.github.libretube'
|
2021-12-18 16:34:14 +05:30
|
|
|
minSdk 21
|
2021-12-09 18:01:40 +05:30
|
|
|
targetSdk 31
|
2022-02-02 22:22:36 +05:30
|
|
|
versionCode 2
|
|
|
|
versionName '0.2'
|
2021-12-12 17:38:23 +05:30
|
|
|
multiDexEnabled true
|
2021-12-09 18:31:47 +05:30
|
|
|
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
2021-12-09 18:01:40 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
2021-12-12 17:38:23 +05:30
|
|
|
|
2021-12-09 18:01:40 +05:30
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = '1.8'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-02-03 15:35:37 +05:30
|
|
|
implementation 'androidx.appcompat:appcompat:1.4.1'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
|
2022-02-02 19:49:46 +05:30
|
|
|
implementation 'com.google.android.material:material:1.6.0-alpha02'
|
2022-02-03 15:35:37 +05:30
|
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.4.0'
|
|
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.4.0'
|
2021-12-09 18:31:47 +05:30
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
2021-12-18 16:34:14 +05:30
|
|
|
|
2021-12-09 18:31:47 +05:30
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
2021-12-18 16:34:14 +05:30
|
|
|
|
2021-12-11 19:27:16 +05:30
|
|
|
implementation 'com.squareup.picasso:picasso:2.8'
|
|
|
|
implementation 'de.hdodenhof:circleimageview:3.1.0'
|
2021-12-12 17:38:23 +05:30
|
|
|
implementation 'com.google.android.exoplayer:exoplayer:2.16.1'
|
2021-12-16 03:39:24 +05:30
|
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
2021-12-12 17:38:23 +05:30
|
|
|
|
2021-12-18 16:34:14 +05:30
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
|
|
|
|
implementation 'com.squareup.retrofit2:converter-jackson:2.9.0'
|
2022-02-03 15:35:37 +05:30
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.1'
|
2021-12-09 18:01:40 +05:30
|
|
|
}
|