mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-22 19:47:56 +00:00
Move dead submodules in-tree
Signed-off-by: swurl <swurl@swurl.xyz>
This commit is contained in:
parent
c0cceff365
commit
6c655321e6
4081 changed files with 1185566 additions and 45 deletions
52
externals/oboe/samples/drumthumper/build.gradle
vendored
Normal file
52
externals/oboe/samples/drumthumper/build.gradle
vendored
Normal file
|
@ -0,0 +1,52 @@
|
|||
plugins {
|
||||
id 'com.android.application'
|
||||
id 'org.jetbrains.kotlin.android'
|
||||
}
|
||||
android {
|
||||
defaultConfig {
|
||||
// Usually the applicationId follows the same scheme as the application package name,
|
||||
// however, this sample will be published on the Google Play Store which will not allow an
|
||||
// applicationId starting with "com.google" as this is reserved for official Google
|
||||
// products. The current owner of the DrumThumper sample apps on Google Play is Paul McLean,
|
||||
// who publishes using the application Id prefix of "com.plausiblesoftware".
|
||||
applicationId "com.plausiblesoftware.drumthumper"
|
||||
minSdkVersion 23
|
||||
compileSdkVersion 35
|
||||
targetSdkVersion 35
|
||||
versionCode 2
|
||||
versionName "1.01"
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt')
|
||||
}
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_18
|
||||
targetCompatibility JavaVersion.VERSION_18
|
||||
}
|
||||
kotlinOptions {
|
||||
jvmTarget = '18'
|
||||
}
|
||||
externalNativeBuild {
|
||||
cmake {
|
||||
path 'src/main/cpp/CMakeLists.txt'
|
||||
}
|
||||
}
|
||||
|
||||
namespace 'com.plausiblesoftware.drumthumper'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
implementation "androidx.core:core-ktx:$core_version"
|
||||
implementation 'androidx.appcompat:appcompat:1.7.0'
|
||||
implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version"
|
||||
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
|
||||
implementation project(path: ':iolib')
|
||||
implementation project(path: ':parselib')
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue