[Feat] (trace-replay): test retrace APK on Android

This commit is contained in:
2026-06-16 14:07:33 +08:00
parent 294dad1773
commit 722bddf916
11 changed files with 191 additions and 9 deletions
+8 -1
View File
@@ -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 {