Skip to content

Commit 51118ca

Browse files
committed
update README.md
1 parent bfd1e8e commit 51118ca

2 files changed

Lines changed: 6 additions & 13 deletions

File tree

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -165,14 +165,7 @@ NavigationLauncherOptions options = NavigationLauncherOptions.builder()
165165
.build();
166166
NavigationLauncher.startNavigation(YourActivity.this, options);
167167
```
168-
ProGuard
169-
------------
170168

171-
If your project uses ProGuard, add the following rules:
172-
173-
```bash
174-
-keep class com.baato.baatolibrary.models.** { *; }
175-
```
176169
## Built With
177170

178171
* [Retrofit](https://github.com/square/retrofit) - Used to handle API requests

baatolibrary/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 30
5-
buildToolsVersion "30.0.2"
4+
compileSdkVersion 29
5+
buildToolsVersion "29.0.2"
66

77

88
defaultConfig {
99
minSdkVersion 15
10-
targetSdkVersion 30
10+
targetSdkVersion 29
1111
versionCode 1
1212
versionName "1.0"
1313

@@ -32,8 +32,8 @@ dependencies {
3232
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
3333

3434
//retrofit
35-
implementation 'com.squareup.retrofit2:retrofit:2.7.1'
36-
implementation 'com.squareup.retrofit2:converter-gson:2.7.1'
35+
implementation 'com.squareup.retrofit2:retrofit:2.6.0'
36+
implementation 'com.squareup.retrofit2:converter-gson:2.6.0'
3737

3838
//graphhopper
3939
implementation(group: 'com.graphhopper', name: 'graphhopper-core', version: '2.2') {
@@ -43,4 +43,4 @@ dependencies {
4343
}
4444

4545
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.8'
46-
}
46+
}

0 commit comments

Comments
 (0)