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

Verified Commit baf890cf authored by Marvin W.'s avatar Marvin W. 🐿️
Browse files

Bump version

parent b0fae31c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
<img src="http://i.imgur.com/hXY4lcC.png" height="42px" alt="microG" /> Services Core (GmsCore)
=======
[![Build Status](https://travis-ci.com/microg/GmsCore.svg?branch=master)](https://travis-ci.com/microg/GmsCore)
[![Build Status](https://github.com/microg/GmsCore/workflows/Build/badge.svg)](https://travis-ci.com/microg/GmsCore)

microG GmsCore is a FLOSS (Free/Libre Open Source Software) framework to allow applications designed for Google Play Services to run on systems, where Play Services is not available.

+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ def execResult(...args) {
    return stdout.toString().trim()
}

def gmsVersion = "20.47.13"
def gmsVersion = "20.47.14"
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"))
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ public class GoogleApiAvailability {
    /**
     * Google Play services client library version (declared in library's AndroidManifest.xml android:versionCode).
     */
    public static final int GOOGLE_PLAY_SERVICES_VERSION_CODE = Constants.MAX_REFERENCE_VERSION;
    public static final int GOOGLE_PLAY_SERVICES_VERSION_CODE = Constants.GMS_VERSION_CODE;

    private static GoogleApiAvailability instance;

+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ public class GooglePlayServicesUtil {
     * Google Play services client library version (declared in library's AndroidManifest.xml android:versionCode).
     */
    @Deprecated
    public static final int GOOGLE_PLAY_SERVICES_VERSION_CODE = Constants.MAX_REFERENCE_VERSION;
    public static final int GOOGLE_PLAY_SERVICES_VERSION_CODE = Constants.GMS_VERSION_CODE;

    /**
     * Package name for Google Play Store.
+1 −0
Original line number Diff line number Diff line
@@ -40,6 +40,7 @@ android {
        versionName version
        minSdkVersion androidMinSdk
        targetSdkVersion androidTargetSdk
        buildConfigField "int", "VERSION_CODE", "$appVersionCode"
    }

    sourceSets {
Loading