From 978620605fed08f7d5ff1e2b9ad08972b56f23c7 Mon Sep 17 00:00:00 2001 From: Lukas Pieper <30661176+lukaspieper@users.noreply.github.com> Date: Mon, 26 Oct 2020 21:16:14 +0100 Subject: [PATCH] Add Android 11 compatibility --- README.md | 4 ---- app/build.gradle | 10 +++++----- app/src/main/AndroidManifest.xml | 6 ++++-- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index dbba344..496c222 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,6 @@ This app "simulates" the Google Play Services that the Google Camera app (Gcam) requires, allowing the camera app to be used on devices without Google Play Services. Note that this app comes without Ui and therefore has no icon in the app drawer. But of course it is listed in the Android settings (e.g. for uninstallation). -#### Compatibility - -This app has been extensively tested with Gcam 7.4.x Unfortunately Gcam >7.5.x (SdkVersion 30) is currently not supported, see [issue #6](https://github.com/lukaspieper/Gcam-Services-Provider/issues/6). - #### What is the difference between this app and [microG](https://github.com/microg)? microG is a open source re-implementation of the Google Play Services. Among other things, [signature spoofing](https://github.com/microg/android_packages_apps_GmsCore/wiki/Signature-Spoofing) is used to achieve this goal. In comparison, this app has only one goal: to get Gcam running without Play Services. Therefore this app does not need any security compromising hacks or permissions (no Internet access, no storage access and of course no root access needed). diff --git a/app/build.gradle b/app/build.gradle index 9190884..fb5433e 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -3,15 +3,15 @@ apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' android { - compileSdkVersion 29 - buildToolsVersion "29.0.2" + compileSdkVersion 30 + buildToolsVersion "30.0.2" defaultConfig { applicationId "com.google.android.gms" minSdkVersion 19 - targetSdkVersion 29 - versionCode 1 - versionName "1.0" + targetSdkVersion 30 + versionCode 2 + versionName "1.1" } buildTypes { diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 253f92f..eb78e48 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -3,11 +3,13 @@ package="com.google.android.gms"> + android:supportsRtl="true" + tools:targetApi="30">