mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-24 04:05:13 +00:00
Explain + usage
This commit is contained in:
parent
50c81f4a24
commit
fd9bd3950c
5 changed files with 32 additions and 0 deletions
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
out/
|
||||
build/
|
||||
*.iml
|
||||
local.properties
|
||||
.gradle/
|
||||
gradle/
|
||||
gradlew
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[submodule "GmsApi"]
|
||||
path = GmsApi
|
||||
url = https://github.com/microg/android_external_GmsApi.git
|
1
GmsApi
Submodule
1
GmsApi
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 7e2f3b8f7b598ee243486e03f0637b8334be216f
|
20
README.md
20
README.md
|
@ -3,3 +3,23 @@ GmsLib
|
|||
This library is a compatibility implementation of the often used play-services library.
|
||||
|
||||
It will try to use the Play Services when installed on the target device. If this is not possible, a basic fallback implementation might be used.
|
||||
|
||||
WIP
|
||||
---
|
||||
This is still work in progress, and most applications will not build.
|
||||
However feel free to try it out and create issues for missing method calls (please include an application to test it).
|
||||
|
||||
Example: DashClock
|
||||
------------------
|
||||
[DashClock](https://code.google.com/p/dashclock/) is an open source clock widget with enhanced features.
|
||||
However it uses play services as location backend and thus requires proprietary libraries to compile it.
|
||||
|
||||
However, it is possible to build DashClock using GmsLib, supporting all it's location features, with or without play services installed.
|
||||
To do this, download and build GmsLib plus its submodules and copy the three resulting .aar files (SafeParcel.aar, GmsApi.aar, GmsLib.aar) to `$DASHCLOCK_DIR/local_aars/`.
|
||||
Then replace `compile 'com.google.android.gms:play-services:4.0.30'` in `$DASHCLOCK_SRC/main/build.gradle` with
|
||||
|
||||
compile(name:'GmsLib', ext:'aar')
|
||||
compile(name:'GmsApi', ext:'aar')
|
||||
compile(name:'SafeParcel', ext:'aar')
|
||||
|
||||
and build as usual.
|
||||
|
|
1
settings.gradle
Normal file
1
settings.gradle
Normal file
|
@ -0,0 +1 @@
|
|||
include ':GmsApi', ':GmsApi:SafeParcel'
|
Loading…
Reference in a new issue