live2d model

This commit is contained in:
gcw_4spBpAfv
2026-03-02 09:25:50 +08:00
parent d63d4b03cf
commit 2f6166ab6c
179 changed files with 100625 additions and 2018 deletions

View File

@@ -0,0 +1,41 @@
plugins {
id 'com.android.library'
}
android {
namespace = "com.live2d.sdk.cubism.framework"
compileSdk ((project.findProperty("PROP_COMPILE_SDK_VERSION") ?: "33").toString().toInteger())
defaultConfig {
minSdkVersion ((project.findProperty("PROP_MIN_SDK_VERSION") ?: "21").toString().toInteger())
targetSdkVersion ((project.findProperty("PROP_TARGET_SDK_VERSION") ?: "33").toString().toInteger())
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
dependencies {
compileOnly(fileTree(dir: '../Core/android', include: ['Live2DCubismCore.aar']))
testImplementation 'junit:junit:4.13.2'
}