mirror of
https://github.com/MobileGL-Dev/MobileGL
synced 2026-09-10 05:08:31 +09:00
[Feat] (trace-replay): test retrace APK on Android
This commit is contained in:
@@ -3,12 +3,19 @@ plugins {
|
||||
id 'com.android.library' version '8.6.0' apply false
|
||||
}
|
||||
|
||||
def mobileGlAbiFilters = {
|
||||
((rootProject.findProperty('mobilegl.abis') ?: System.getenv('MOBILEGL_ABIS') ?: 'arm64-v8a') as String)
|
||||
.split(',')
|
||||
.collect { it.trim() }
|
||||
.findAll { !it.isEmpty() }
|
||||
}
|
||||
|
||||
subprojects { subproject ->
|
||||
subproject.plugins.withId('com.android.library') {
|
||||
subproject.android {
|
||||
defaultConfig {
|
||||
ndk {
|
||||
abiFilters 'arm64-v8a'
|
||||
abiFilters(*mobileGlAbiFilters())
|
||||
}
|
||||
externalNativeBuild {
|
||||
cmake {
|
||||
|
||||
Reference in New Issue
Block a user