p2play-app-android/app/build.gradle

55 lines
1.9 KiB
Groovy
Raw Permalink Normal View History

2018-08-18 07:04:31 +02:00
2024-03-19 01:45:04 +01:00
plugins {
id "com.android.application"
id "kotlin-android"
id "kotlin-android-extensions"
}
2018-08-18 07:04:31 +02:00
android {
2024-03-28 03:44:52 +01:00
compileSdkVersion 34
2018-08-18 07:04:31 +02:00
defaultConfig {
applicationId "org.libre.agosto.p2play"
2024-03-19 01:45:04 +01:00
minSdkVersion 26
2024-03-26 01:53:01 +01:00
targetSdkVersion 32
2024-04-16 06:18:02 +02:00
versionCode 10
versionName "0.7.0"
2018-08-18 07:04:31 +02:00
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
2024-03-28 03:44:52 +01:00
vectorDrawables.useSupportLibrary = true
2018-08-18 07:04:31 +02:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
2024-03-19 01:45:04 +01:00
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2024-04-16 06:07:14 +02:00
namespace 'org.libre.agosto.p2play'
lint {
2019-01-30 19:40:36 +01:00
abortOnError false
2024-04-16 06:07:14 +02:00
checkReleaseBuilds false
2019-01-30 19:40:36 +01:00
}
2018-08-18 07:04:31 +02:00
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
2019-10-18 03:41:32 +02:00
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
2018-08-18 07:04:31 +02:00
implementation 'com.squareup.picasso:picasso:2.71828'
2024-04-16 06:07:14 +02:00
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
2024-03-21 04:04:16 +01:00
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
2024-04-16 06:07:14 +02:00
implementation 'com.android.support:appcompat-v7:28.0.0'
2024-03-26 01:53:01 +01:00
implementation 'com.google.android.material:material:1.6.0'
2024-04-16 06:07:14 +02:00
implementation 'androidx.preference:preference:1.2.1'
testImplementation 'junit:junit:4.13.2'
2024-03-21 04:04:16 +01:00
androidTestImplementation 'androidx.test:runner:1.5.2'
2024-04-16 06:07:14 +02:00
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
2024-03-28 03:44:52 +01:00
implementation 'androidx.media3:media3-exoplayer:1.1.1'
implementation 'androidx.media3:media3-exoplayer-dash:1.1.1'
implementation 'androidx.media3:media3-ui:1.1.1'
implementation 'androidx.media3:media3-exoplayer-hls:1.1.1'
2024-04-11 05:15:06 +02:00
implementation "androidx.media3:media3-session:1.1.1"
2018-08-18 07:04:31 +02:00
}