Add Android 11 compatibility

This commit is contained in:
Lukas Pieper 2020-10-26 21:16:14 +01:00
parent 4a99c81693
commit 978620605f
3 changed files with 9 additions and 11 deletions

View file

@ -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).

View file

@ -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 {

View file

@ -3,11 +3,13 @@
package="com.google.android.gms">
<application
android:allowBackup="true"
android:forceQueryable="true"
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true">
android:supportsRtl="true"
tools:targetApi="30">
<provider
android:name=".GServicesProvider"