Skip to content
This repository was archived by the owner on Apr 28, 2022. It is now read-only.

Commit 19b1719

Browse files
authored
Merge pull request #118 from Dukobpa3/feature/ios_tune_up
Feature/ios tune up
2 parents 2f43b41 + 37cd18f commit 19b1719

19 files changed

+182
-58
lines changed

.gitmodules

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[submodule "sample"]
22
path = sample
3-
url = https://github.com/GrimReio/OpenIAB-sample-game.git
3+
url=../OpenIAB-sample-game.git
44
[submodule "OpenIAB"]
55
path = OpenIAB
66
url = ../OpenIAB.git

OpenIAB-Unity-Plugin.iml

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<module external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="unspecified" type="JAVA_MODULE" version="4">
2+
<module external.linked.project.id="OpenIAB-Unity-Plugin" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="unspecified" type="JAVA_MODULE" version="4">
33
<component name="FacetManager">
44
<facet type="java-gradle" name="Java-Gradle">
55
<configuration>
66
<option name="BUILD_FOLDER_PATH" value="$MODULE_DIR$/build" />
7+
<option name="BUILDABLE" value="false" />
78
</configuration>
89
</facet>
910
</component>
10-
<component name="NewModuleRootManager" inherit-compiler-output="false">
11-
<output url="file://$MODULE_DIR$/build/classes/main" />
12-
<output-test url="file://$MODULE_DIR$/build/classes/test" />
11+
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="true">
1312
<exclude-output />
1413
<content url="file://$MODULE_DIR$">
1514
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
1615
</content>
17-
<orderEntry type="jdk" jdkName="1.7" jdkType="JavaSDK" />
16+
<orderEntry type="inheritedJdk" />
1817
<orderEntry type="sourceFolder" forTests="false" />
1918
</component>
20-
</module>
21-
19+
</module>

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ Before build plugin you must: <br>
4949
2. Unity must be closed while build is running.
5050

5151
For build project you must run from terminal in `unity_plugin` directory of project<br>
52-
```groovy
52+
```bash
5353
../gradlew clean buildPlugin
5454
```
5555
On Windows run<br>
56-
```groovy
56+
```bash
5757
..\gradlew.bat clean buildPlugin
5858
```
5959

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
}
99

1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:0.14.4'
11+
classpath 'com.android.tools.build:gradle:2.2.3'
1212
}
1313
}
1414

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Thu Nov 27 14:33:46 EET 2014
1+
#Thu Dec 22 12:25:19 EET 2016
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip

sample

Binary file not shown.

unity_plugin/unity_src/Assets/AssetStoreTools/Editor/AssetStoreToolsExtra.dll.meta

+16-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

unity_plugin/unity_src/Assets/Plugins/OpenIAB/OpenIABEventManager.cs

+7-6
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public class OpenIABEventManager : MonoBehaviour
6969
/**
7070
* Fired when transaction was restored
7171
*/
72-
public static event Action<string> transactionRestoredEvent;
72+
public static event Action<Purchase> transactionRestoredEvent;
7373

7474
/**
7575
* Fired when transaction restoration process failed
@@ -159,11 +159,11 @@ private void OnConsumePurchaseFailed(string error)
159159
consumePurchaseFailedEvent(error);
160160
}
161161

162-
public void OnTransactionRestored(string sku)
162+
public void OnTransactionRestored(string json)
163163
{
164164
if (transactionRestoredEvent != null)
165165
{
166-
transactionRestoredEvent(sku);
166+
transactionRestoredEvent(new Purchase(json));
167167
}
168168
}
169169

@@ -226,7 +226,8 @@ private void OnPurchaseFailed(string error)
226226
{
227227
if (purchaseFailedEvent != null)
228228
{
229-
purchaseFailedEvent(-1, error);
229+
// -1005 is similar to android "cancelled" code
230+
purchaseFailedEvent(string.Equals(error, "Transaction cancelled")? -1005 : -1, error);
230231
}
231232
}
232233

@@ -242,11 +243,11 @@ private void OnConsumePurchaseFailed(string error)
242243
consumePurchaseFailedEvent(error);
243244
}
244245

245-
public void OnPurchaseRestored(string sku)
246+
public void OnPurchaseRestored(string json)
246247
{
247248
if (transactionRestoredEvent != null)
248249
{
249-
transactionRestoredEvent(sku);
250+
transactionRestoredEvent(new Purchase(json));
250251
}
251252
}
252253

Binary file not shown.

unity_plugin/unity_src/Assets/Plugins/OpenIAB/Purchase.cs

+1
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ public Purchase(string jsonString)
9999
public Purchase(JSON json) {
100100
ItemType = json.ToString("itemType");
101101
OrderId = json.ToString("orderId");
102+
Receipt = json.ToString("receipt");
102103
PackageName = json.ToString("packageName");
103104
Sku = json.ToString("sku");
104105
PurchaseTime = json.ToLong("purchaseTime");

unity_plugin/unity_src/Assets/Plugins/OpenIAB/iOS.meta

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

unity_plugin/unity_src/Assets/Plugins/iOS/AppStoreBridge.mm

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ bool Inventory_hasPurchase(const char* sku)
7676
NSUserDefaults *standardUserDefaults = [NSUserDefaults standardUserDefaults];
7777
if (standardUserDefaults)
7878
{
79-
return [standardUserDefaults boolForKey:ToString(sku)];
79+
return [[[standardUserDefaults dictionaryRepresentation] allKeys] containsObject:ToString(sku)];
8080
}
8181
else
8282
{

unity_plugin/unity_src/Assets/Plugins/iOS/AppStoreBridge.mm.meta

+18-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

unity_plugin/unity_src/Assets/Plugins/iOS/AppStoreDelegate.h.meta

+18-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)