Skip to content

Commit

Permalink
Prepare for building apk
Browse files Browse the repository at this point in the history
  • Loading branch information
manolol1 committed Jan 10, 2024
1 parent d012124 commit 8ff8a3c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ out/
gen/
local.properties
!gradle/

*.keystore
gradle.properties
18 changes: 18 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,24 @@ project(":android") {

configurations { natives }

android {
signingConfigs {
release {
storeFile file("android.keystore")
storePassword KEYSTORE_PASSWORD
keyAlias KEY_ALIAS
keyPassword KEY_PASSWORD
}
}

buildTypes {
release {
signingConfig signingConfigs.release
// Other release settings...
}
}
}

dependencies {
implementation project(":core")
api "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
Expand Down
4 changes: 0 additions & 4 deletions gradle.properties

This file was deleted.

0 comments on commit 8ff8a3c

Please sign in to comment.