apply plugin: 'com.android.library' apply plugin: 'com.github.dcendents.android-maven' group='com.github.Rukey7' android { compileSdkVersion 34 buildToolsVersion "30.0.3" defaultConfig { minSdkVersion 22 targetSdkVersion 34 versionCode 4 versionName "1.0.3" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { api fileTree(dir: 'libs', include: ['*.jar']) testImplementation 'org.testng:testng:6.9.6' androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' // ijkplayer api 'tv.danmaku.ijk.media:ijkplayer-java:0.7.8.1' api 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.7.8.1' // Danmaku api 'com.github.ctiao:DanmakuFlameMaster:0.6.2' }