Skip to content

Commit

Permalink
Merge pull request #24 from eggheadgames/update-google-billing-library
Browse files Browse the repository at this point in the history
Update Google billing library
  • Loading branch information
mikemee authored May 28, 2020
2 parents 6d8c382 + 106154a commit 769576d
Show file tree
Hide file tree
Showing 21 changed files with 399 additions and 2,566 deletions.
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
buildscript {
ext.kotlin_version = '1.3.72'
ext {
app = [
versionCode: 12,
versionName: "1.2.9"
versionCode: 20,
versionName: "2.0.0"
]

general = [
Expand All @@ -20,6 +21,7 @@ buildscript {

dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}

Expand Down
6 changes: 6 additions & 0 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ plugins {
id 'com.android.library'
id 'com.novoda.static-analysis' version '1.2'
id "com.github.spotbugs" version '3.0.0'
id 'kotlin-android'
id 'kotlin-android-extensions'
}

group = 'com.github.eggheadgames'
Expand Down Expand Up @@ -30,8 +32,12 @@ android {
}

dependencies {
implementation "androidx.core:core-ktx:1.2.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

api files('libs/in-app-purchasing-2.0.76.jar')
api 'androidx.appcompat:appcompat:1.1.0'
api 'com.android.billingclient:billing:2.2.0'

testImplementation 'junit:junit:4.13'
testImplementation 'org.mockito:mockito-core:2.24.0'
Expand Down

This file was deleted.

Loading

0 comments on commit 769576d

Please sign in to comment.