Skip to content

Commit

Permalink
Merge pull request #9654 from JosJuice/android-12-early
Browse files Browse the repository at this point in the history
Android: Early changes to adapt for Android 12
  • Loading branch information
leoetlino committed Apr 19, 2021
2 parents 045c5a1 + 5a1a642 commit ec5fbeb
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 15 deletions.
30 changes: 25 additions & 5 deletions Source/Android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.dolphinemu.dolphinemu">
xmlns:tools="http://schemas.android.com/tools"
package="org.dolphinemu.dolphinemu">

<uses-feature
android:name="android.hardware.touchscreen"
Expand Down Expand Up @@ -37,13 +38,16 @@
android:allowBackup="false"
android:supportsRtl="true"
android:isGame="true"
android:banner="@drawable/banner_tv">
android:banner="@drawable/banner_tv"
android:debuggable="true"
tools:ignore="HardcodedDebugMode">
<meta-data
android:name="android.max_aspect"
android:value="2.1"/>

<activity
android:name=".ui.main.MainActivity"
android:exported="true"
android:theme="@style/DolphinBase">

<!-- This intentfilter marks this Activity as the one that gets launched from Home screen. -->
Expand All @@ -56,6 +60,7 @@

<activity
android:name=".ui.main.TvMainActivity"
android:exported="true"
android:theme="@style/DolphinTvBase">

<!-- This intentfilter marks this Activity as the one that gets launched from Home screen. -->
Expand All @@ -68,26 +73,33 @@

<activity
android:name=".features.settings.ui.SettingsActivity"
android:exported="false"
android:configChanges="orientation|screenSize"
android:theme="@style/DolphinSettingsBase"
android:label="@string/preferences_settings"/>

<activity
android:name=".activities.EmulationActivity"
android:exported="false"
android:theme="@style/DolphinEmulationBase"
android:preferMinimalPostProcessing="true"/>

<activity
android:name=".activities.CustomFilePickerActivity"
android:exported="false"
android:label="@string/app_name"
android:theme="@style/FilePickerTheme">

<intent-filter>
<action android:name="android.intent.action.GET_CONTENT"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>

<activity android:name=".activities.AppLinkActivity">
<activity
android:name=".activities.AppLinkActivity"
android:exported="true">

<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
Expand All @@ -99,14 +111,22 @@

<activity
android:name=".activities.ConvertActivity"
android:exported="false"
android:theme="@style/DolphinBase" />

<service android:name=".utils.DirectoryInitialization"/>
<service android:name=".services.GameFileCacheService"/>
<service
android:name=".utils.DirectoryInitialization"
android:exported="false"/>

<service
android:name=".services.GameFileCacheService"
android:exported="false"/>

<service
android:name=".services.SyncChannelJobService"
android:exported="false"
android:permission="android.permission.BIND_JOB_SERVICE"/>

<service
android:name=".services.SyncProgramsJobService"
android:exported="false"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import android.hardware.usb.UsbEndpoint;
import android.hardware.usb.UsbInterface;
import android.hardware.usb.UsbManager;
import android.os.Build;
import android.widget.Toast;

import androidx.annotation.Keep;
Expand Down Expand Up @@ -46,11 +47,13 @@ private static void RequestPermission()
{
if (!manager.hasPermission(dev))
{
Intent intent = new Intent();
PendingIntent pend_intent;
intent.setClass(context, USBPermService.class);
pend_intent = PendingIntent.getService(context, 0, intent, 0);
manager.requestPermission(dev, pend_intent);
Intent intent = new Intent(context, USBPermService.class);

int flags = Build.VERSION.SDK_INT >= Build.VERSION_CODES.M ?
PendingIntent.FLAG_IMMUTABLE : 0;
PendingIntent pendingIntent = PendingIntent.getService(context, 0, intent, flags);

manager.requestPermission(dev, pendingIntent);
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import android.hardware.usb.UsbEndpoint;
import android.hardware.usb.UsbInterface;
import android.hardware.usb.UsbManager;
import android.os.Build;

import androidx.annotation.Keep;

Expand Down Expand Up @@ -50,11 +51,14 @@ private static void RequestPermission()
if (!manager.hasPermission(dev))
{
Log.warning("Requesting permission for Wii Remote adapter");
Intent intent = new Intent();
PendingIntent pend_intent;
intent.setClass(context, USBPermService.class);
pend_intent = PendingIntent.getService(context, 0, intent, 0);
manager.requestPermission(dev, pend_intent);

Intent intent = new Intent(context, USBPermService.class);

int flags = Build.VERSION.SDK_INT >= Build.VERSION_CODES.M ?
PendingIntent.FLAG_IMMUTABLE : 0;
PendingIntent pendingIntent = PendingIntent.getService(context, 0, intent, flags);

manager.requestPermission(dev, pendingIntent);
}
}
}
Expand Down

0 comments on commit ec5fbeb

Please sign in to comment.