mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-30 23:23:01 +00:00
Various fixes for gradle/maven
This commit is contained in:
parent
c790480c40
commit
d47deb067f
8 changed files with 11 additions and 5 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,5 +1,6 @@
|
||||||
out/
|
out/
|
||||||
build/
|
build/
|
||||||
|
.idea/
|
||||||
*.iml
|
*.iml
|
||||||
local.properties
|
local.properties
|
||||||
.gradle/
|
.gradle/
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit d2ec5f52fa6c1aed0640e65130b20e3ffce5f8b0
|
Subproject commit dbae4add94505fb0765ca9a18896848df6ae6ae4
|
|
@ -3,4 +3,6 @@
|
||||||
package="com.google.android.gms">
|
package="com.google.android.gms">
|
||||||
|
|
||||||
<uses-sdk android:minSdkVersion="9" />
|
<uses-sdk android:minSdkVersion="9" />
|
||||||
|
|
||||||
|
<application />
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.google.android.gms">
|
package="org.microg.gms.location">
|
||||||
|
|
||||||
<uses-sdk android:minSdkVersion="9" />
|
<uses-sdk android:minSdkVersion="9" />
|
||||||
<application>
|
<application>
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.google.android.gms">
|
package="org.microg.gms.wearable">
|
||||||
|
|
||||||
<uses-sdk android:minSdkVersion="9" />
|
<uses-sdk android:minSdkVersion="9" />
|
||||||
|
|
||||||
|
<application />
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|
|
@ -2,7 +2,6 @@ apply plugin: 'com.android.library'
|
||||||
apply plugin: 'com.github.dcendents.android-maven'
|
apply plugin: 'com.github.dcendents.android-maven'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile 'com.android.support:support-v4:21.0.3'
|
|
||||||
compile project(':play-services-base')
|
compile project(':play-services-base')
|
||||||
compile project(':play-services-location')
|
compile project(':play-services-location')
|
||||||
compile project(':play-services-wearable')
|
compile project(':play-services-wearable')
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.google.android.gms">
|
package="org.microg.gms">
|
||||||
|
|
||||||
<uses-sdk android:minSdkVersion="9" />
|
<uses-sdk android:minSdkVersion="9" />
|
||||||
|
|
||||||
|
<application />
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|
Loading…
Reference in a new issue