Skip to content

Commit

Permalink
Update sdkVersion, gradle 8.2, and java 17 (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
syntaxerror247 authored Jan 21, 2025
1 parent 1196bdd commit 3a61cbb
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 35 deletions.
20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion GodotGooglePlayBilling.gdap
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name="GodotGooglePlayBilling"
binary_type="local"
binary="GodotGooglePlayBilling.1.2.0.release.aar"
binary="GodotGooglePlayBilling.1.3.0.release.aar"

[dependencies]
remote=["com.android.billingclient:billing:7.0.0"]
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:4.0.0"
classpath "com.android.tools.build:gradle:8.2.0"

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -15,7 +15,7 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}

Expand Down
17 changes: 11 additions & 6 deletions godot-google-play-billing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,25 @@ plugins {
id 'com.android.library'
}

ext.pluginVersionCode = 5
ext.pluginVersionName = "1.2.0"
ext.pluginVersionCode = 6
ext.pluginVersionName = "1.3.0"

android {
compileSdkVersion 31
buildToolsVersion "30.0.3"
namespace 'org.godotengine.godot.plugin.googleplaybilling'
compileSdkVersion 34

defaultConfig {
minSdkVersion 18
targetSdkVersion 31
minSdkVersion 21
targetSdkVersion 34
versionCode pluginVersionCode
versionName pluginVersionName
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}

libraryVariants.all { variant ->
variant.outputs.all { output ->
output.outputFileName = "GodotGooglePlayBilling.$pluginVersionName.${variant.name}.aar"
Expand Down
4 changes: 1 addition & 3 deletions godot-google-play-billing/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.godotengine.godot.plugin.googleplaybilling">

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>

<meta-data
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*************************************************************************/
/* GodotGooglePlayBilling.java */
/* GodotGooglePlayBilling.java */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Jun 15 13:39:16 CEST 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip

0 comments on commit 3a61cbb

Please sign in to comment.