-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Google Play Billing implementation (#32)
Google Play Billing implementation
- Loading branch information
1 parent
48bdcb1
commit 0a24384
Showing
69 changed files
with
3,946 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Changelog | ||
|
||
## 0.3.5 | ||
- Fixed inventory query uncaught exception | ||
|
||
## 0.3.0 | ||
- Google Play Billing lib implementation - GooglePlayBillingVendor | ||
- Google Play Billing implementation unit tests | ||
- Fake purchase flow for GooglePlayBillingVendor | ||
- New sample app using GooglePlayBillingVendor | ||
- Added changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
apply plugin: 'com.android.library' | ||
apply plugin: 'com.github.dcendents.android-maven' | ||
|
||
android { | ||
compileSdkVersion versions.compileSdk | ||
buildToolsVersion versions.buildTools | ||
|
||
defaultConfig { | ||
minSdkVersion versions.minSdk | ||
} | ||
|
||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
} | ||
} | ||
testOptions { | ||
unitTests.all { | ||
testLogging { | ||
exceptionFormat 'full' | ||
showStackTraces true | ||
showCauses true | ||
events "passed", "skipped", "failed", "standardError" | ||
} | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
api project(':cashier-google-play-billing') | ||
|
||
compileOnly deps.autoValue | ||
compileOnly deps.supportAnnotations | ||
annotationProcessor deps.autoValue | ||
annotationProcessor deps.autoParcel | ||
|
||
testImplementation deps.robolectric | ||
testImplementation deps.junit | ||
testImplementation deps.mockito | ||
testImplementation deps.truth | ||
} |
13 changes: 13 additions & 0 deletions
13
cashier-google-play-billing-debug/src/main/AndroidManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<manifest | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.getkeepsafe.cashier.billing.debug"> | ||
|
||
<application> | ||
|
||
<activity | ||
android:name=".FakeGooglePlayCheckoutActivity" | ||
android:theme="@style/Cashier.FakeCheckoutTheme"/> | ||
|
||
</application> | ||
|
||
</manifest> |
Oops, something went wrong.