Skip to content

Commit

Permalink
release 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kota.fujiwara committed Jul 2, 2021
1 parent d4f0cc5 commit a3095b5
Show file tree
Hide file tree
Showing 17 changed files with 138 additions and 44 deletions.
Binary file modified KarteSDK.unitypackage
Binary file not shown.
9 changes: 8 additions & 1 deletion Unity/Assets/Editor/BuildProcess/PostBuildProcess.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,20 @@ public static void OnPostProcessBuild (BuildTarget buildTarget, string path) {
PBXProject pj = new PBXProject ();
pj.ReadFromString (File.ReadAllText (pjPath));

#if UNITY_2019_3_OR_NEWER
string targetName = pj.GetUnityMainTargetGuid();

#else
string targetName = pj.TargetGuidByName("Unity-iPhone");
#endif
pj.AddBuildProperty (targetName, "OTHER_LDFLAGS", "-ObjC");
pj.AddBuildProperty (targetName, "CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES", "YES");
pj.AddBuildProperty (targetName, "ENABLE_BITCODE", "NO");

#if UNITY_2019_3_OR_NEWER
string unityFrameWorkTargetName = pj.GetUnityFrameworkTargetGuid();
#else
string unityFrameWorkTargetName = pj.TargetGuidByName(PBXProject.GetUnityTargetName());
#endif
pj.AddBuildProperty (unityFrameWorkTargetName, "OTHER_CFLAGS", "-fmodules");
pj.AddBuildProperty (unityFrameWorkTargetName, "OTHER_CFLAGS", "-fcxx-modules");
pj.AddBuildProperty (unityFrameWorkTargetName, "ENABLE_BITCODE", "NO");
Expand Down
18 changes: 9 additions & 9 deletions Unity/Assets/Editor/KarteDependencies.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<repositories>
<repository>https://jcenter.bintray.com</repository>
</repositories>
<androidPackage spec="io.karte.android:core:2.6.+"> </androidPackage>
<androidPackage spec="io.karte.android:inappmessaging:2.7.+"> </androidPackage>
<androidPackage spec="io.karte.android:notifications:2.4.+"> </androidPackage>
<androidPackage spec="io.karte.android:variables:2.2.+"> </androidPackage>
<androidPackage spec="io.karte.android:core:+"> </androidPackage>
<androidPackage spec="io.karte.android:inappmessaging:.+"> </androidPackage>
<androidPackage spec="io.karte.android:notifications:+"> </androidPackage>
<androidPackage spec="io.karte.android:variables:+"> </androidPackage>
</androidPackages>
<iosPods>
<iosPod name="KarteCore" version="~> 2.11.0"/>
<iosPod name="KarteInAppMessaging" version="~> 2.8.0"/>
<iosPod name="KarteRemoteNotification" version="~> 2.4.0"/>
<iosPod name="KarteVariables" version="~> 2.1.0"/>
<iosPod name="KarteCore"/>
<iosPod name="KarteInAppMessaging"/>
<iosPod name="KarteRemoteNotification"/>
<iosPod name="KarteVariables"/>
</iosPods>
</dependencies>
</dependencies>
Binary file modified Unity/Assets/Karte/lib/tracker_unity-release.aar
Binary file not shown.
Binary file modified Unity/Assets/Plugins/iOS/libKarteSDKPlugin.a
Binary file not shown.
8 changes: 8 additions & 0 deletions Unity/Assets/Resources.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Unity/Assets/Resources/BillingMode.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"androidStore":"GooglePlay"}
7 changes: 7 additions & 0 deletions Unity/Assets/Resources/BillingMode.json.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 11 additions & 10 deletions Unity/Packages/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@
"dependencies": {
"com.unity.2d.sprite": "1.0.0",
"com.unity.2d.tilemap": "1.0.0",
"com.unity.ads": "3.4.7",
"com.unity.ads": "3.7.1",
"com.unity.analytics": "3.3.5",
"com.unity.collab-proxy": "1.2.16",
"com.unity.ext.nunit": "1.0.0",
"com.unity.ide.rider": "1.1.4",
"com.unity.ide.vscode": "1.2.1",
"com.unity.multiplayer-hlapi": "1.0.6",
"com.unity.purchasing": "2.0.6",
"com.unity.test-framework": "1.1.14",
"com.unity.textmeshpro": "2.0.1",
"com.unity.timeline": "1.2.6",
"com.unity.ext.nunit": "1.0.6",
"com.unity.ide.rider": "1.2.1",
"com.unity.ide.visualstudio": "2.0.8",
"com.unity.ide.vscode": "1.2.3",
"com.unity.multiplayer-hlapi": "1.0.8",
"com.unity.purchasing": "3.1.0",
"com.unity.test-framework": "1.1.24",
"com.unity.textmeshpro": "2.1.4",
"com.unity.timeline": "1.2.18",
"com.unity.ugui": "1.0.0",
"com.unity.xr.legacyinputhelpers": "2.1.4",
"com.unity.xr.legacyinputhelpers": "2.1.7",
"com.unity.modules.ai": "1.0.0",
"com.unity.modules.androidjni": "1.0.0",
"com.unity.modules.animation": "1.0.0",
Expand Down
54 changes: 39 additions & 15 deletions Unity/Packages/packages-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"dependencies": {}
},
"com.unity.ads": {
"version": "3.4.7",
"version": "3.7.1",
"depth": 0,
"source": "registry",
"dependencies": {
Expand All @@ -38,30 +38,39 @@
"url": "https://packages.unity.com"
},
"com.unity.ext.nunit": {
"version": "1.0.0",
"version": "1.0.6",
"depth": 0,
"source": "registry",
"dependencies": {},
"url": "https://packages.unity.com"
},
"com.unity.ide.rider": {
"version": "1.1.4",
"version": "1.2.1",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.test-framework": "1.1.1"
},
"url": "https://packages.unity.com"
},
"com.unity.ide.visualstudio": {
"version": "2.0.8",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.test-framework": "1.1.9"
},
"url": "https://packages.unity.com"
},
"com.unity.ide.vscode": {
"version": "1.2.1",
"version": "1.2.3",
"depth": 0,
"source": "registry",
"dependencies": {},
"url": "https://packages.unity.com"
},
"com.unity.multiplayer-hlapi": {
"version": "1.0.6",
"version": "1.0.8",
"depth": 0,
"source": "registry",
"dependencies": {
Expand All @@ -70,25 +79,31 @@
"url": "https://packages.unity.com"
},
"com.unity.purchasing": {
"version": "2.0.6",
"version": "3.1.0",
"depth": 0,
"source": "registry",
"dependencies": {},
"dependencies": {
"com.unity.ugui": "1.0.0",
"com.unity.modules.unityanalytics": "1.0.0",
"com.unity.modules.unitywebrequest": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0",
"com.unity.modules.androidjni": "1.0.0"
},
"url": "https://packages.unity.com"
},
"com.unity.test-framework": {
"version": "1.1.14",
"version": "1.1.24",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.ext.nunit": "1.0.0",
"com.unity.ext.nunit": "1.0.6",
"com.unity.modules.imgui": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0"
},
"url": "https://packages.unity.com"
},
"com.unity.textmeshpro": {
"version": "2.0.1",
"version": "2.1.4",
"depth": 0,
"source": "registry",
"dependencies": {
Expand All @@ -97,25 +112,34 @@
"url": "https://packages.unity.com"
},
"com.unity.timeline": {
"version": "1.2.6",
"version": "1.2.18",
"depth": 0,
"source": "registry",
"dependencies": {},
"dependencies": {
"com.unity.modules.director": "1.0.0",
"com.unity.modules.animation": "1.0.0",
"com.unity.modules.audio": "1.0.0",
"com.unity.modules.particlesystem": "1.0.0"
},
"url": "https://packages.unity.com"
},
"com.unity.ugui": {
"version": "1.0.0",
"depth": 0,
"source": "builtin",
"dependencies": {
"com.unity.modules.ui": "1.0.0"
"com.unity.modules.ui": "1.0.0",
"com.unity.modules.imgui": "1.0.0"
}
},
"com.unity.xr.legacyinputhelpers": {
"version": "2.1.4",
"version": "2.1.7",
"depth": 0,
"source": "registry",
"dependencies": {},
"dependencies": {
"com.unity.modules.vr": "1.0.0",
"com.unity.modules.xr": "1.0.0"
},
"url": "https://packages.unity.com"
},
"nuget.mono-cecil": {
Expand Down
45 changes: 45 additions & 0 deletions Unity/ProjectSettings/PackageManagerSettings.asset
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &1
MonoBehaviour:
m_ObjectHideFlags: 61
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_ScopedRegistriesSettingsExpanded: 1
oneTimeWarningShown: 0
m_Registries:
- m_Id: main
m_Name:
m_Url: https://packages.unity.com
m_Scopes: []
m_IsDefault: 1
- m_Id: scoped:Game Package Registry by Google
m_Name: Game Package Registry by Google
m_Url: https://unityregistry-pa.googleapis.com
m_Scopes:
- com.google
m_IsDefault: 0
m_UserSelectedRegistryName:
m_UserAddingNewScopedRegistry: 0
m_RegistryInfoDraft:
m_ErrorMessage:
m_Original:
m_Id: scoped:Game Package Registry by Google
m_Name: Game Package Registry by Google
m_Url: https://unityregistry-pa.googleapis.com
m_Scopes:
- com.google
m_IsDefault: 0
m_Modified: 0
m_Name: Game Package Registry by Google
m_Url: https://unityregistry-pa.googleapis.com
m_Scopes:
- com.google
m_SelectedScopeIndex: 0
4 changes: 2 additions & 2 deletions Unity/ProjectSettings/ProjectVersion.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
m_EditorVersion: 2019.4.6f1
m_EditorVersionWithRevision: 2019.4.6f1 (a7aea80e3716)
m_EditorVersion: 2019.4.28f1
m_EditorVersionWithRevision: 2019.4.28f1 (1381962e9d08)
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.4
0.0.5
2 changes: 1 addition & 1 deletion androidPlugin/.idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion androidPlugin/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions androidPlugin/.idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions androidPlugin/tracker_unity/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ android {

dependencies {
compileOnly fileTree(dir: 'libs', include: ['*.jar','*.aar'])
implementation 'io.karte.android:core:2.4.0'
implementation 'io.karte.android:inappmessaging:2.5.0'
implementation 'io.karte.android:notifications:2.3.0'
implementation 'io.karte.android:variables:2.1.0'
implementation 'io.karte.android:core:+'
implementation 'io.karte.android:inappmessaging:+'
implementation 'io.karte.android:notifications:+'
implementation 'io.karte.android:variables:+'
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'com.google.firebase:firebase-messaging:+'
testImplementation 'junit:junit:4.12'
Expand Down

0 comments on commit a3095b5

Please sign in to comment.