2021-06-22 16:05:02 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-parcelize'
|
|
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
apply plugin: 'androidx.navigation.safeargs.kotlin'
|
|
|
|
|
|
|
|
android {
|
2024-05-16 23:43:27 +02:00
|
|
|
compileSdkVersion 34
|
2021-06-22 16:05:02 +02:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "fr.mobdev.peertubelive"
|
2021-07-27 15:45:12 +02:00
|
|
|
minSdkVersion 21
|
2024-05-16 23:43:27 +02:00
|
|
|
targetSdkVersion 34
|
|
|
|
versionCode 3
|
|
|
|
versionName "1.2"
|
2021-06-22 16:05:02 +02:00
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
2024-05-16 23:43:27 +02:00
|
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
|
|
targetCompatibility JavaVersion.VERSION_17
|
2021-06-22 16:05:02 +02:00
|
|
|
}
|
|
|
|
kotlinOptions {
|
2024-05-16 23:43:27 +02:00
|
|
|
jvmTarget = '17'
|
2021-06-22 16:05:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
buildFeatures {
|
|
|
|
dataBinding true
|
2024-05-16 23:43:27 +02:00
|
|
|
buildConfig true
|
2021-06-22 16:05:02 +02:00
|
|
|
}
|
2022-06-16 12:34:41 +02:00
|
|
|
namespace 'fr.mobdev.peertubelive'
|
2021-06-22 16:05:02 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
|
|
implementation project(':rtplibrary')
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2024-05-16 23:43:27 +02:00
|
|
|
implementation 'androidx.core:core-ktx:1.13.1'
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
|
|
implementation 'com.google.android.material:material:1.12.0'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.7.7'
|
|
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.7.7'
|
2021-07-07 17:26:27 +02:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2024-05-16 23:43:27 +02:00
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
2021-06-22 16:05:02 +02:00
|
|
|
|
|
|
|
}
|