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

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

Squashed commit

- Update sublibs
- Update build tools
- Add reminders service stub
- Update play services version, fixes #138
parent 70119087
Loading
Loading
Loading
Loading
Compare 9daa4db4 to a5afc233
Original line number Diff line number Diff line
Subproject commit 9daa4db4f3bfe2508d36a170520b60c68df5fbe1
Subproject commit a5afc23373ab1890f5df2ecebce96e9db74c0829
Compare 424f0c38 to 8c398c9e
Original line number Diff line number Diff line
Subproject commit 424f0c387f8db113501069f7d4e5bd12febb6f72
Subproject commit 8c398c9e34ab59004c77a8b34830a8e9facd010e
Compare 666ef2a8 to 682fdea8
Original line number Diff line number Diff line
Subproject commit 666ef2a8628b1c76701a2d5f138d4fd90751b5e9
Subproject commit 682fdea8a5f675ea64505991700907ae936081f9
+2 −2
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ buildscript {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.0.0'
        classpath 'com.android.tools.build:gradle:2.1.0'
    }
}

@@ -81,7 +81,7 @@ android {
        def x = getMyVersionCode()
        // We are not allowed to freely choose the hundreds column as it defines the device type
        // Update commit id to current when increasing gms version code
        versionCode(8490200 + x % 100 + ((int) (x / 100)) * 1000)
        versionCode(9083200 + x % 100 + ((int) (x / 100)) * 1000)

        ndk {
            abiFilters "armeabi", "armeabi-v7a", "arm64-v8a", "x86"
+6 −1
Original line number Diff line number Diff line
@@ -427,6 +427,12 @@
                <category android:name="android.intent.category.DEFAULT"/>
            </intent-filter>
        </service>
        <service android:name="org.microg.gms.reminders.RemindersService">
            <intent-filter>
                <action android:name="com.google.android.gms.reminders.service.START"/>
                <category android:name="android.intent.category.DEFAULT"/>
            </intent-filter>
        </service>

        <service android:name="org.microg.gms.DummyService">
            <intent-filter>
@@ -442,7 +448,6 @@
                <action android:name="com.google.android.gms.wearable.BIND"/>
                <action android:name="com.google.android.gms.auth.service.START"/>
                <action android:name="com.google.android.gms.fitness.GoogleFitnessService.START"/>
                <action android:name="com.google.android.gms.reminders.service.START"/>
                <action android:name="com.google.android.gms.deviceconnection.service.START"/>
                <action android:name="com.google.android.gms.droidguard.service.START"/>
                <action android:name="com.google.android.gms.lockbox.service.START"/>
Loading