Skip to content

Commit 97d0518

Browse files
committed
feat(ios): Xcode 14 update, remove bitcode and add no-objc-msgsend-selector-stubs compiler flag (resolves #12)
1 parent 4d69dd9 commit 97d0518

File tree

76 files changed

+1189
-1083
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+1189
-1083
lines changed

.github/workflows/issues.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 'Close stale issues and PR'
22
on:
33
schedule:
4-
- cron: '30 1 * * *'
4+
- cron: '30 1 * * 2'
55

66
jobs:
77
stale:

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
###### 2023.01.18 [v5.2.0]
2+
3+
```
4+
feat(ios): Xcode 14 update, remove bitcode and add no-objc-msgsend-selector-stubs compiler flag (resolves #12)
5+
```
6+
17
###### 2022.03.08 [v5.1.0]
28

39
```

example/simple/src/TestIDFA-app.xml

+12-3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
4040
<key>NSUserTrackingUsageDescription</key>
4141
<string>This identifier will be used to deliver personalized ads to you.</string>
4242
43+
<key>MinimumOSVersion</key>
44+
<string>11.0</string>
45+
4346
]]></InfoAdditions>
4447
<requestedDisplayResolution>high</requestedDisplayResolution>
4548
<Entitlements>
@@ -54,11 +57,17 @@
5457
5558
<uses-permission android:name="android.permission.INTERNET"/>
5659
57-
<application android:hardwareAccelerated="true">
60+
<uses-permission android:name="com.google.android.gms.permission.AD_ID" />
61+
62+
<application android:hardwareAccelerated="true">
63+
64+
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
5865
59-
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
66+
<activity android:name="com.google.android.gms.common.api.GoogleApiActivity"
67+
android:theme="@android:style/Theme.Translucent.NoTitleBar"
68+
android:exported="false" />
6069
61-
</application>
70+
</application>
6271
</manifest>
6372
]]></manifestAdditions>
6473
</android>

example/simple/src/TestIDFA.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* \__,_/_/____/_/ /_/ /_/\__, /_/
77
* / /
88
* \/
9-
* http://distriqt.com
9+
* https://distriqt.com
1010
*
1111
* This is a test application for the distriqt extension
1212
*

example/starling/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
ane
2+
apm_packages
3+
project-lock.apm
1.72 MB
Binary file not shown.
-499 KB
Binary file not shown.
-1.39 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

example/starling/apm_packages/androidx.core/contents/package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"docUrl": "https://github.com/distriqt/ANE-AndroidSupport/wiki",
66
"description": "Android dependency library",
77
"type": "ane",
8-
"version": "1.3.2",
9-
"sourceUrl": "https://github.com/distriqt/ANE-AndroidSupport/releases/download/v1.6.2/androidx.core_1.3.2.airpackage",
10-
"publishedAt": "2021-09-13T00:00:00.000Z",
8+
"version": "1.6.2",
9+
"sourceUrl": "https://github.com/distriqt/ANE-AndroidSupport/releases/download/v2.3.0/androidx.core_1.6.2.airpackage",
10+
"publishedAt": "2022-11-18T13:43:30.000Z",
1111
"dependencies": [],
1212
"parameters": [],
1313
"tags": [],
@@ -16,5 +16,6 @@
1616
"type": "none",
1717
"public": true
1818
},
19+
"status": "release",
1920
"purchaseUrl": ""
2021
}

example/starling/apm_packages/androidx.core/contents/platforms/android/activity-1.1.0/AndroidManifest.xml

-24
This file was deleted.

example/starling/apm_packages/androidx.core/contents/platforms/android/coordinatorlayout-1.0.0/AndroidManifest.xml

-22
This file was deleted.

example/starling/apm_packages/androidx.core/contents/platforms/android/core-1.3.2/AndroidManifest.xml

-26
This file was deleted.

example/starling/apm_packages/androidx.core/contents/platforms/android/customview-1.0.0/AndroidManifest.xml

-22
This file was deleted.

example/starling/apm_packages/androidx.core/contents/platforms/android/drawerlayout-1.0.0/AndroidManifest.xml

-22
This file was deleted.

example/starling/apm_packages/androidx.core/contents/platforms/android/fragment-1.2.5/AndroidManifest.xml

-24
This file was deleted.

example/starling/apm_packages/androidx.core/contents/platforms/android/lifecycle-livedata-2.2.0/AndroidManifest.xml

-24
This file was deleted.

example/starling/apm_packages/androidx.core/contents/platforms/android/lifecycle-livedata-core-2.2.0/AndroidManifest.xml

-24
This file was deleted.

example/starling/apm_packages/androidx.core/contents/platforms/android/lifecycle-process-2.2.0/AndroidManifest.xml

-32
This file was deleted.

example/starling/apm_packages/androidx.core/contents/platforms/android/lifecycle-runtime-2.2.0/AndroidManifest.xml

-24
This file was deleted.

example/starling/apm_packages/androidx.core/contents/platforms/android/lifecycle-service-2.2.0/AndroidManifest.xml

-24
This file was deleted.

example/starling/apm_packages/androidx.core/contents/platforms/android/lifecycle-viewmodel-2.2.0/AndroidManifest.xml

-24
This file was deleted.

0 commit comments

Comments
 (0)