mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 12:32:52 +00:00
[Android] Minor fixes for Play Feature Delivery
This commit is contained in:
parent
93f9d69742
commit
34a8c980ad
@ -47,6 +47,10 @@ import java.util.Locale;
|
||||
*/
|
||||
public class RetroActivityCommon extends NativeActivity
|
||||
{
|
||||
static {
|
||||
System.loadLibrary("retroarch-activity");
|
||||
}
|
||||
|
||||
public static int FRONTEND_POWERSTATE_NONE = 0;
|
||||
public static int FRONTEND_POWERSTATE_NO_SOURCE = 1;
|
||||
public static int FRONTEND_POWERSTATE_CHARGING = 2;
|
||||
|
@ -14,6 +14,12 @@ allprojects {
|
||||
google()
|
||||
jcenter()
|
||||
}
|
||||
|
||||
Properties props = new Properties()
|
||||
props.load(new FileInputStream(new File(project.rootDir, "retroarch.properties")))
|
||||
props.each { prop ->
|
||||
project.ext.set(prop.key, prop.value)
|
||||
}
|
||||
}
|
||||
|
||||
apply plugin: 'com.android.application'
|
||||
|
1
pkg/android/phoenix/retroarch.properties
Normal file
1
pkg/android/phoenix/retroarch.properties
Normal file
@ -0,0 +1 @@
|
||||
android.bundle.enableUncompressedNativeLibs=false
|
Loading…
x
Reference in New Issue
Block a user