Android/XixunPlayer/app/build.gradle

41 lines
964 B
Groovy
Raw Normal View History

2023-11-09 08:37:59 +08:00
plugins {
id 'com.android.application'
}
android {
namespace 'com.xixun.xixunplayer'
compileSdk 33
defaultConfig {
applicationId "com.xixun.xixunplayer"
minSdk 28
targetSdk 33
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
buildFeatures {
aidl true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation files('libs\\gnph.jar')
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.25'
implementation files('libs\\xixun_card_settings_1.2.4.jar')
}