mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-19 11:03:01 +00:00
Don't extract native libraries for non-root build
This commit is contained in:
parent
15e856dccb
commit
3fff34e08a
@ -2,5 +2,8 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
|
||||||
<!-- Non-root application name -->
|
<!-- Non-root application name -->
|
||||||
<application android:label="Moonlight" />
|
<!-- No need to extract libraries for the non-root version -->
|
||||||
|
<application
|
||||||
|
android:label="Moonlight"
|
||||||
|
android:extractNativeLibs="false" />
|
||||||
</manifest>
|
</manifest>
|
||||||
|
@ -2,5 +2,9 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
|
||||||
<!-- Root application name -->
|
<!-- Root application name -->
|
||||||
<application android:label="Moonlight (Root)" />
|
<!-- Ensure native libraries are always extracted for root builds,
|
||||||
|
since we must invoke the evdev_reader binary ourselves -->
|
||||||
|
<application
|
||||||
|
android:label="Moonlight (Root)"
|
||||||
|
android:extractNativeLibs="true" />
|
||||||
</manifest>
|
</manifest>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user