Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8c5f47cb authored by Romain Hunault's avatar Romain Hunault 💻
Browse files

Update to v0.2.20.212158

parent 10ed9d47
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@
 */

buildscript {
    ext.cronetVersion = '91.0.4472.120'
    ext.nlpVersion = '2.0-alpha6'
    ext.remoteDroidGuardVersion = '0.1.2'
    ext.safeParcelVersion = '1.7.0'
@@ -58,7 +59,7 @@ def execResult(...args) {
    return stdout.toString().trim()
}

def gmsVersion = "21.15.15"
def gmsVersion = "21.21.58"
def gmsVersionCode = Integer.parseInt(gmsVersion.replaceAll('\\.', ''))
def gitVersionBase = execResult('git', 'describe', '--tags', '--abbrev=0', '--match=v[0-9]*').substring(1)
def gitCommitCount = Integer.parseInt(execResult('git', 'rev-list', '--count', "v$gitVersionBase..HEAD"))
+4 −1
Original line number Diff line number Diff line
@@ -11,4 +11,7 @@ interface IAuthManagerService {
    Bundle clearToken(String token, in Bundle extras) = 1;
    AccountChangeEventsResponse getChangeEvents(in AccountChangeEventsRequest request) = 2;
    Bundle getTokenWithAccount(in Account account, String scope, in Bundle extras) = 4;
    Bundle getAccounts(in Bundle extras) = 5;
    Bundle removeAccount(in Account account) = 6;
    Bundle requestGoogleAccountsAccess(String packageName) = 7;
}
+8 −4
Original line number Diff line number Diff line
@@ -3,8 +3,12 @@ package com.google.android.gms.dynamite;
import com.google.android.gms.dynamic.IObjectWrapper;

interface IDynamiteLoader {
    int getModuleVersion(IObjectWrapper context, String moduleId) = 0;
    int getModuleVersion2(IObjectWrapper context, String moduleId, boolean updateConfigIfRequired) = 2;
    int getModuleVersion(IObjectWrapper wrappedContext, String moduleId) = 0;
    int getModuleVersion2(IObjectWrapper wrappedContext, String moduleId, boolean updateConfigIfRequired) = 2;
    int getModuleVersion2NoCrashUtils(IObjectWrapper wrappedContext, String moduleId, boolean updateConfigIfRequired) = 4;

    IObjectWrapper createModuleContext(IObjectWrapper context, String moduleId, int minVersion) = 1;
    IObjectWrapper createModuleContext(IObjectWrapper wrappedContext, String moduleId, int minVersion) = 1;
    IObjectWrapper createModuleContextNoCrashUtils(IObjectWrapper wrappedContext, String moduleId, int minVersion) = 3;

    int getIDynamiteLoaderVersion() = 5;
}
+0 −5
Original line number Diff line number Diff line
package com.google.android.gms.tapandpay.internal;

interface ITapAndPayService {

}
+2 −0
Original line number Diff line number Diff line
@@ -29,6 +29,8 @@ public class CredentialRequest extends AutoSafeParcelable {
    @Field(4)
    private CredentialPickerConfig credentialHintPickerConfig;

    private CredentialRequest() { }

    public CredentialRequest(boolean passwordLoginSupported, String[] accountTypes, CredentialPickerConfig credentialPickerConfig, CredentialPickerConfig credentialHintPickerConfig) {
        this.passwordLoginSupported = passwordLoginSupported;
        this.accountTypes = accountTypes;
Loading