diff options
author | Bananeweizen <bananeweizen@gmx.de> | 2015-01-10 08:24:43 +0100 |
---|---|---|
committer | Bananeweizen <bananeweizen@gmx.de> | 2015-01-10 08:24:43 +0100 |
commit | b36fd0cef27042ee662f228a7efcd982473a6679 (patch) | |
tree | f943d5ce3bdb5b382a745f250d1f1ed627385a6a | |
parent | 3fde87ab5e111dc81336f9d016b1660acdb64513 (diff) | |
download | cgeo-b36fd0cef27042ee662f228a7efcd982473a6679.zip cgeo-b36fd0cef27042ee662f228a7efcd982473a6679.tar.gz cgeo-b36fd0cef27042ee662f228a7efcd982473a6679.tar.bz2 |
DEX sometimes complains about multiple class definitions
Just rename the stub classes to avoid this.
-rw-r--r-- | play-services-base/src/android/UnusedStubBase.java (renamed from play-services-base/src/android/UnusedStub.java) | 2 | ||||
-rw-r--r-- | play-services-location/src/android/UnusedStubLocation.java (renamed from play-services-location/src/android/UnusedStub.java) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/play-services-base/src/android/UnusedStub.java b/play-services-base/src/android/UnusedStubBase.java index 614f53b..96ba36b 100644 --- a/play-services-base/src/android/UnusedStub.java +++ b/play-services-base/src/android/UnusedStubBase.java @@ -2,7 +2,7 @@ package android; // unused file to avoid trouble with the empty src folder -public class UnusedStub { +public class UnusedStubBase { } diff --git a/play-services-location/src/android/UnusedStub.java b/play-services-location/src/android/UnusedStubLocation.java index c28e572..b882f72 100644 --- a/play-services-location/src/android/UnusedStub.java +++ b/play-services-location/src/android/UnusedStubLocation.java @@ -1,7 +1,7 @@ package android; // unused file to avoid trouble with the empty src folder -public class UnusedStub { +public class UnusedStubLocation { } |