Skip to content

Commit

Permalink
Version 6.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Shin-NiL committed Aug 3, 2022
1 parent 78cc899 commit dbd22d9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,17 @@ One good place to add this metadata is just below these lines, inside of the **a
Here
</application>
```
- To avoid the mergeDex error, enable the multidex support. Edit the file ```res://android/build/build.gradle``` and insert the line `multiDexEnabled = true` inside the `android` => `defaultConfig`:
```
android {
defaultConfig {
...
multiDexEnabled = true
...
}
}
```

- (Temporary workaround, not required for Godot 3.5 and later) edit the file ```res://android/build/config.gradle``` to set proper SDK version. Change compileSdk to 30 and buildTools to '30.0.0'
Play services after version 20.4.0 require compileSdk 31 or higher. Applications will not compile with 30. The Godot 3.x, branch after 3.4, sets the compileSdk to 32, which is why Godot 3.5 will no longer require this step to modify config.gradle.

Expand Down
4 changes: 2 additions & 2 deletions admob-plugin/godotadmob/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ plugins {
id 'com.android.library'
}

ext.pluginVersionCode = 6
ext.pluginVersionName = "6.1.0"
ext.pluginVersionCode = 7
ext.pluginVersionName = "6.1.1"

android {
compileSdk 31
Expand Down
2 changes: 1 addition & 1 deletion config/GodotAdMob.gdap
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name="GodotAdMob"
binary_type="local"
binary="GodotAdMob.6.1.0.release.aar"
binary="GodotAdMob.6.1.1.release.aar"

[dependencies]

Expand Down

0 comments on commit dbd22d9

Please sign in to comment.