mirror of
https://github.com/MobileGL-Dev/MobileGL
synced 2026-09-08 04:08:32 +09:00
17 lines
579 B
XML
17 lines
579 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<application android:debuggable="true">
|
|
<activity
|
|
android:name=".trace.TraceReplayActivity"
|
|
android:exported="true"
|
|
android:theme="@style/Theme.MobileGLPlugin">
|
|
<intent-filter>
|
|
<action android:name="top.mobilegl.plugin.TRACE_REPLAY" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest>
|