mirror of https://github.com/axmolengine/axmol.git
58 lines
2.1 KiB
Groovy
58 lines
2.1 KiB
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion PROP_COMPILE_SDK_VERSION.toInteger()
|
|
|
|
defaultConfig {
|
|
minSdkVersion PROP_MIN_SDK_VERSION
|
|
targetSdkVersion PROP_TARGET_SDK_VERSION
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
sourceSets.main {
|
|
aidl.srcDir "../java/src"
|
|
java.srcDir "../java/src"
|
|
manifest.srcFile "AndroidManifest.xml"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: '../java/libs', include: ['*.jar'])
|
|
|
|
def media3_version = "1.0.2" // exoplayer-2.18.7
|
|
|
|
// refer to: https://developer.android.com/jetpack/androidx/releases/media3?hl=zh-cn#declaring_dependencies
|
|
// For media playback using ExoPlayer
|
|
api "androidx.media3:media3-exoplayer:$media3_version"
|
|
|
|
// For DASH playback support with ExoPlayer
|
|
//api "androidx.media3:media3-exoplayer-dash:$media3_version"
|
|
// For HLS playback support with ExoPlayer
|
|
//api "androidx.media3:media3-exoplayer-hls:$media3_version"
|
|
// For RTSP playback support with ExoPlayer
|
|
//api "androidx.media3:media3-exoplayer-rtsp:$media3_version"
|
|
// For ad insertion using the Interactive Media Ads SDK with ExoPlayer
|
|
//api "androidx.media3:media3-exoplayer-ima:$media3_version"
|
|
|
|
implementation 'androidx.annotation:annotation:1.3.0'
|
|
|
|
api ('com.google.guava:guava:31.0.1-android') {
|
|
// Exclude dependencies that are only used by Guava at compile time
|
|
// (but declared as runtime deps) [internal b/168188131].
|
|
exclude group: 'com.google.code.findbugs', module: 'jsr305'
|
|
exclude group: 'org.checkerframework', module: 'checker-compat-qual'
|
|
exclude group: 'org.checkerframework', module: 'checker-qual'
|
|
exclude group: 'com.google.errorprone', module: 'error_prone_annotations'
|
|
exclude group: 'com.google.j2objc', module: 'j2objc-annotations'
|
|
exclude group: 'org.codehaus.mojo', module: 'animal-sniffer-annotations'
|
|
}
|
|
}
|