pythonnative 0.22.0__py3-none-any.whl → 0.22.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pythonnative/__init__.py +1 -1
- pythonnative/animated.py +6 -6
- pythonnative/cli/pn.py +1 -1
- pythonnative/components.py +12 -12
- pythonnative/events.py +5 -5
- pythonnative/gestures.py +3 -3
- pythonnative/hooks.py +3 -3
- pythonnative/hot_reload.py +4 -4
- pythonnative/layout.py +3 -3
- pythonnative/mutations.py +1 -1
- pythonnative/native_modules/camera.py +1 -1
- pythonnative/native_modules/haptics.py +2 -2
- pythonnative/native_modules/location.py +1 -1
- pythonnative/native_modules/permissions.py +2 -2
- pythonnative/native_modules/secure_store.py +1 -1
- pythonnative/native_views/android.py +20 -20
- pythonnative/native_views/base.py +3 -3
- pythonnative/native_views/desktop.py +7 -7
- pythonnative/native_views/ios.py +23 -23
- pythonnative/navigation.py +4 -4
- pythonnative/net.py +3 -3
- pythonnative/platform.py +1 -1
- pythonnative/platform_metrics.py +5 -5
- pythonnative/preview.py +3 -3
- pythonnative/project/builder.py +1 -1
- pythonnative/project/config.py +3 -3
- pythonnative/project/doctor.py +2 -2
- pythonnative/project/icons.py +1 -1
- pythonnative/project/ios.py +1 -1
- pythonnative/project/permissions.py +2 -2
- pythonnative/project/runtime_assets.py +3 -3
- pythonnative/reconciler.py +9 -9
- pythonnative/runtime.py +8 -8
- pythonnative/screen.py +5 -5
- pythonnative/sdk/_components.py +1 -1
- pythonnative/storage.py +3 -3
- pythonnative/style.py +1 -1
- pythonnative/templates/ios_template/ios_template.xcodeproj/project.pbxproj +2 -2
- pythonnative/templates/ios_template/ios_templateUITests/ios_templateUITests.swift +1 -1
- {pythonnative-0.22.0.dist-info → pythonnative-0.22.1.dist-info}/METADATA +13 -13
- {pythonnative-0.22.0.dist-info → pythonnative-0.22.1.dist-info}/RECORD +45 -45
- {pythonnative-0.22.0.dist-info → pythonnative-0.22.1.dist-info}/WHEEL +0 -0
- {pythonnative-0.22.0.dist-info → pythonnative-0.22.1.dist-info}/entry_points.txt +0 -0
- {pythonnative-0.22.0.dist-info → pythonnative-0.22.1.dist-info}/licenses/LICENSE +0 -0
- {pythonnative-0.22.0.dist-info → pythonnative-0.22.1.dist-info}/top_level.txt +0 -0
pythonnative/storage.py
CHANGED
|
@@ -321,7 +321,7 @@ class AsyncStorage:
|
|
|
321
321
|
"""Return the JSON-decoded value stored at ``key``, or ``None``.
|
|
322
322
|
|
|
323
323
|
If the stored value isn't valid JSON, returns ``None`` rather
|
|
324
|
-
than raising
|
|
324
|
+
than raising; assume the entry was written by another
|
|
325
325
|
process or an older version of the app.
|
|
326
326
|
"""
|
|
327
327
|
raw = await AsyncStorage.get(key)
|
|
@@ -347,7 +347,7 @@ def use_persisted_state(
|
|
|
347
347
|
Backed by [`AsyncStorage`][pythonnative.storage.AsyncStorage]:
|
|
348
348
|
behaves like ``use_state`` but loads the prior value (if any) on
|
|
349
349
|
mount and persists every subsequent update. Until the load
|
|
350
|
-
completes the value is ``initial
|
|
350
|
+
completes the value is ``initial``, the same fallback React
|
|
351
351
|
Native users get with ``AsyncStorage.getItem``.
|
|
352
352
|
|
|
353
353
|
The setter accepts either a value or a ``current -> new``
|
|
@@ -362,7 +362,7 @@ def use_persisted_state(
|
|
|
362
362
|
initial: Value used before the first load completes.
|
|
363
363
|
|
|
364
364
|
Returns:
|
|
365
|
-
``(value, setter)
|
|
365
|
+
``(value, setter)``, same shape as
|
|
366
366
|
[`use_state`][pythonnative.use_state].
|
|
367
367
|
|
|
368
368
|
Example:
|
pythonnative/style.py
CHANGED
|
@@ -208,7 +208,7 @@ class Style(TypedDict, total=False):
|
|
|
208
208
|
[`Literal`][typing.Literal]. ``Style`` is a `total=False` TypedDict
|
|
209
209
|
so any subset of keys is valid at construction time.
|
|
210
210
|
|
|
211
|
-
Custom native components may accept additional, unlisted keys
|
|
211
|
+
Custom native components may accept additional, unlisted keys;
|
|
212
212
|
they are ignored by the built-in handlers but flow through the
|
|
213
213
|
reconciler unmodified, so third-party handlers can read them.
|
|
214
214
|
|
|
@@ -253,8 +253,8 @@
|
|
|
253
253
|
isa = XCRemoteSwiftPackageReference;
|
|
254
254
|
repositoryURL = "https://github.com/pvieito/PythonKit";
|
|
255
255
|
requirement = {
|
|
256
|
-
|
|
257
|
-
|
|
256
|
+
kind = upToNextMinorVersion;
|
|
257
|
+
minimumVersion = 0.5.1;
|
|
258
258
|
};
|
|
259
259
|
};
|
|
260
260
|
/* End XCRemoteSwiftPackageReference section */
|
|
@@ -15,7 +15,7 @@ final class ios_templateUITests: XCTestCase {
|
|
|
15
15
|
// In UI tests it is usually best to stop immediately when a failure occurs.
|
|
16
16
|
continueAfterFailure = false
|
|
17
17
|
|
|
18
|
-
// In UI tests it
|
|
18
|
+
// In UI tests it's important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this.
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
override func tearDownWithError() throws {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pythonnative
|
|
3
|
-
Version: 0.22.
|
|
3
|
+
Version: 0.22.1
|
|
4
4
|
Summary: Cross-platform native UI toolkit for Android and iOS
|
|
5
5
|
Author: Owen Carey
|
|
6
6
|
License: MIT License
|
|
@@ -28,7 +28,7 @@ License: MIT License
|
|
|
28
28
|
Project-URL: Homepage, https://github.com/pythonnative/pythonnative
|
|
29
29
|
Project-URL: Repository, https://github.com/pythonnative/pythonnative
|
|
30
30
|
Project-URL: Issues, https://github.com/pythonnative/pythonnative/issues
|
|
31
|
-
Project-URL: Documentation, https://
|
|
31
|
+
Project-URL: Documentation, https://pythonnative.com/
|
|
32
32
|
Classifier: Development Status :: 2 - Pre-Alpha
|
|
33
33
|
Classifier: Intended Audience :: Developers
|
|
34
34
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -83,13 +83,13 @@ Dynamic: license-file
|
|
|
83
83
|
<a href="https://pypi.org/project/pythonnative/"><img src="https://img.shields.io/pypi/v/pythonnative" alt="PyPI Version" /></a>
|
|
84
84
|
<a href="https://pypi.org/project/pythonnative/"><img src="https://img.shields.io/pypi/pyversions/pythonnative" alt="Python Versions" /></a>
|
|
85
85
|
<a href="LICENSE"><img src="https://img.shields.io/pypi/l/pythonnative" alt="License: MIT" /></a>
|
|
86
|
-
<a href="https://
|
|
86
|
+
<a href="https://pythonnative.com/"><img src="https://img.shields.io/website?url=https%3A%2F%2Fpythonnative.com&label=docs" alt="Docs" /></a>
|
|
87
87
|
</p>
|
|
88
88
|
|
|
89
89
|
<p align="center">
|
|
90
|
-
<a href="https://
|
|
91
|
-
<a href="https://
|
|
92
|
-
<a href="https://
|
|
90
|
+
<a href="https://pythonnative.com/">Documentation</a> ·
|
|
91
|
+
<a href="https://pythonnative.com/getting-started/">Getting Started</a> ·
|
|
92
|
+
<a href="https://pythonnative.com/examples/">Examples</a> ·
|
|
93
93
|
<a href="CONTRIBUTING.md">Contributing</a>
|
|
94
94
|
</p>
|
|
95
95
|
|
|
@@ -102,19 +102,19 @@ PythonNative is a cross-platform toolkit for building native Android and iOS app
|
|
|
102
102
|
## Features
|
|
103
103
|
|
|
104
104
|
- **Declarative UI:** Describe *what* your UI should look like with element functions (`Text`, `Button`, `Column`, `Row`, etc.). PythonNative creates and updates native views automatically.
|
|
105
|
-
- **Rich component library:** 25+ built-in components backed by real native widgets
|
|
106
|
-
- **Device APIs:** Cross-platform modules for `Camera`, `Location`, `FileSystem`, `Notifications`, `Clipboard`, `Share`, `Linking`, `Permissions`, `AppState`, `NetInfo`, `SecureStore`, `Battery`, `Haptics` / `Vibration`, and `Biometrics
|
|
105
|
+
- **Rich component library:** 25+ built-in components backed by real native widgets: `TextInput`, `Image` / `ImageBackground`, `ScrollView`, `FlatList` / `SectionList`, `Modal`, `Pressable` / `TouchableOpacity`, `Switch` / `Checkbox`, `Slider`, `SegmentedControl`, `Picker`, `DatePicker`, `ProgressBar` / `ActivityIndicator`, `WebView`, and more.
|
|
106
|
+
- **Device APIs:** Cross-platform modules for `Camera`, `Location`, `FileSystem`, `Notifications`, `Clipboard`, `Share`, `Linking`, `Permissions`, `AppState`, `NetInfo`, `SecureStore`, `Battery`, `Haptics` / `Vibration`, and `Biometrics`, plus reactive `use_app_state` and `use_net_info` hooks.
|
|
107
107
|
- **Hooks and function components:** Manage state with `use_state`, side effects with `use_effect`, and navigation with `use_navigation`, all through one consistent pattern.
|
|
108
108
|
- **Typed `style` prop:** Pass all visual and layout properties through a single `style` dict, fully described by the `pn.Style` `TypedDict` and the ergonomic `pn.style(...)` helper for IDE autocomplete and static checking. Compose reusable styles with `StyleSheet`.
|
|
109
109
|
- **Cross-platform flexbox engine:** A pure-Python, Yoga-style layout engine computes frames once and applies them to native views, so `flex`, `padding`, `aspect_ratio`, and `position: "absolute"` produce the same geometry on Android and iOS.
|
|
110
|
-
- **Virtual view tree + reconciler:** Element trees are diffed and patched with minimal native mutations, similar to React's reconciliation. Each commit lands as **one batched transaction** of mutation ops, and event callbacks are routed through a tag-based registry so re-renders that only change closures cost zero native calls. State updates re-render **locally
|
|
110
|
+
- **Virtual view tree + reconciler:** Element trees are diffed and patched with minimal native mutations, similar to React's reconciliation. Each commit lands as **one batched transaction** of mutation ops, and event callbacks are routed through a tag-based registry so re-renders that only change closures cost zero native calls. State updates re-render **locally**: only the component whose state changed (and its subtree) re-runs, and unchanged leaves reuse cached intrinsic measurements, so deep UIs stay responsive instead of re-rendering the whole app from the root on every tap.
|
|
111
111
|
- **Native-driven animations:** The `Animated` API (timing / spring / decay, awaitable or fire-and-forget) hands animations to Core Animation and `ViewPropertyAnimator` whenever possible, so no Python code runs per frame; a pure-Python ticker covers the rest.
|
|
112
|
-
- **Native gesture system:** Attach `Tap`, `LongPress`, `Pan`, `Swipe`, `Pinch`, and `Rotation` recognizers to any view via the `gestures=` prop
|
|
113
|
-
- **Virtualized lists:** `FlatList` / `SectionList` window their rows in Python over the platform scroll view
|
|
112
|
+
- **Native gesture system:** Attach `Tap`, `LongPress`, `Pan`, `Swipe`, `Pinch`, and `Rotation` recognizers to any view via the `gestures=` prop, backed by `UIGestureRecognizer` on iOS and a unit-testable pure-Python arbiter on Android and desktop.
|
|
113
|
+
- **Virtualized lists:** `FlatList` / `SectionList` window their rows in Python over the platform scroll view: uniform, exact, or measured variable heights, grids, headers/footers, infinite scroll, and an imperative scroll controller, identical on every platform.
|
|
114
114
|
- **Direct native bindings:** Python calls platform APIs directly through Chaquopy and rubicon-objc, with no JavaScript bridge.
|
|
115
115
|
- **Custom-component SDK:** Wrap any platform widget as a first-class element with type-checked props via `pythonnative.sdk` (`Props`, `@native_component`, `element_factory`). Plugins distributed on PyPI auto-register through the `pythonnative.handlers` entry-point group.
|
|
116
116
|
- **CLI scaffolding:** `pn init` creates a ready-to-run project; `pn run android` and `pn run ios` build and launch your app.
|
|
117
|
-
- **Instant desktop preview:** `pn preview` renders your app in a native desktop window via Tkinter with Fast Refresh on every save
|
|
117
|
+
- **Instant desktop preview:** `pn preview` renders your app in a native desktop window via Tkinter with Fast Refresh on every save: iterate on layout, state, and navigation in milliseconds without booting a simulator or device. The reconciler, hooks, layout engine, and navigation are the same code that ships to the phone.
|
|
118
118
|
- **Native-backed navigation:** Declarative `Stack`, `Tab`, and `Drawer` navigators inspired by React Navigation. The root stack drives the platform's native navigation controller (`UINavigationController` on iOS, AndroidX Navigation Component on Android), so transitions, back gestures, and the hardware back button match what users expect.
|
|
119
119
|
- **Fast Refresh hot reload:** `pn run --hot-reload` watches `app/` and patches edits into the running app on save, preserving component state across most changes.
|
|
120
120
|
- **Bundled templates:** Android Gradle and iOS Xcode templates are included, so scaffolding requires no network access.
|
|
@@ -148,7 +148,7 @@ def App():
|
|
|
148
148
|
|
|
149
149
|
## Documentation
|
|
150
150
|
|
|
151
|
-
Visit [
|
|
151
|
+
Visit [pythonnative.com](https://pythonnative.com/) for the full documentation, including getting started guides, platform-specific instructions for Android and iOS, API reference, and working examples.
|
|
152
152
|
|
|
153
153
|
## Contributing
|
|
154
154
|
|
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
pythonnative/__init__.py,sha256=
|
|
1
|
+
pythonnative/__init__.py,sha256=ZdUkmJeUWu3oWKFzUxJ6O56P8_7nGgqirhQp_csapHQ,8551
|
|
2
2
|
pythonnative/_ios_log.py,sha256=Oi7V28VxcVoZyrpAirvLeEmUW18McqnU87V4d37Zzlw,2582
|
|
3
3
|
pythonnative/alerts.py,sha256=mIANysFlaHwL5EqKnvNcyiJN9rGiZi9XDrD9Jpz1RFM,9340
|
|
4
|
-
pythonnative/animated.py,sha256=
|
|
5
|
-
pythonnative/components.py,sha256=
|
|
4
|
+
pythonnative/animated.py,sha256=IBokHVfp_Ud5VC8b4drY9DX8A4uG9wqRUjcW3y-EtkI,36233
|
|
5
|
+
pythonnative/components.py,sha256=0BjsgQUVbiUZkpsX_0vxpuRs8zGV7P9V2HEnZHFEcAE,85248
|
|
6
6
|
pythonnative/element.py,sha256=W9varJj0Cl9HpckL8BcsC1u4ryUQOPVMrvetro4ilAE,2725
|
|
7
|
-
pythonnative/events.py,sha256=
|
|
8
|
-
pythonnative/gestures.py,sha256=
|
|
9
|
-
pythonnative/hooks.py,sha256=
|
|
10
|
-
pythonnative/hot_reload.py,sha256=
|
|
11
|
-
pythonnative/layout.py,sha256=
|
|
12
|
-
pythonnative/mutations.py,sha256=
|
|
13
|
-
pythonnative/navigation.py,sha256=
|
|
14
|
-
pythonnative/net.py,sha256=
|
|
15
|
-
pythonnative/platform.py,sha256=
|
|
16
|
-
pythonnative/platform_metrics.py,sha256=
|
|
17
|
-
pythonnative/preview.py,sha256=
|
|
18
|
-
pythonnative/reconciler.py,sha256=
|
|
19
|
-
pythonnative/runtime.py,sha256=
|
|
20
|
-
pythonnative/screen.py,sha256=
|
|
21
|
-
pythonnative/storage.py,sha256=
|
|
22
|
-
pythonnative/style.py,sha256=
|
|
7
|
+
pythonnative/events.py,sha256=H3XmZW99M16Q1OiRq1NbS6e-Pdopi6piCh6qdkmEu40,7632
|
|
8
|
+
pythonnative/gestures.py,sha256=6qe_s3Cv2M5_V-_PgAQ5y9QbYV812B0xVmh8dRDHYMY,29940
|
|
9
|
+
pythonnative/hooks.py,sha256=spKlbJSFQNg1jKTR9BFwyAf9soYDE5A8_L43W4cu9wU,38987
|
|
10
|
+
pythonnative/hot_reload.py,sha256=g-PKXRw7IXZgLyuGwjQmztH10JjT8ULM-szrWWTKe7U,25024
|
|
11
|
+
pythonnative/layout.py,sha256=Ck_FCLSk0g4hdOzHo0c50cbvLe8Q8caQAxywXgnFhKM,49077
|
|
12
|
+
pythonnative/mutations.py,sha256=aIhA4ESajEIPb1FxGJ6KkJ19vhs6wo1w82A5d52ql9s,4021
|
|
13
|
+
pythonnative/navigation.py,sha256=4U57lHqiJJbqRJdTdvveRHKJ58BJhrwvkDOSoFt02I8,35566
|
|
14
|
+
pythonnative/net.py,sha256=8D7EyEC8-JkYxlrtVfTDApOGzzdcA4P4kaCdYBBZI8E,8082
|
|
15
|
+
pythonnative/platform.py,sha256=WtjxR04CqVhSnjJu-3upk8bwXYaSWr2N0MOVoNov-h0,4994
|
|
16
|
+
pythonnative/platform_metrics.py,sha256=1r1kMbgS9LcVTbdpP5qRD4oHEvw70te5BXEyd_16Ihc,8961
|
|
17
|
+
pythonnative/preview.py,sha256=ZBXOtXuFBeaRXdClhkpIhcQWsLu9fho0qChfPxnbr7w,16982
|
|
18
|
+
pythonnative/reconciler.py,sha256=QFIFG3KjgoPas8LVDHRWouWEEtunegPz-jl6i5Hwno8,57082
|
|
19
|
+
pythonnative/runtime.py,sha256=Ij3xxr_RyWESX7jP7b-RpsYjqjsJi1OpoV3WL3WTBWU,18245
|
|
20
|
+
pythonnative/screen.py,sha256=GxDA8xE1GG35Evf4XwMq6tLTzcggkHN26HtVJFLeHOQ,64834
|
|
21
|
+
pythonnative/storage.py,sha256=pp2mqlAy7wPr8vNwtcmalxc2658lD6z7PU4ilbnxAwE,12001
|
|
22
|
+
pythonnative/style.py,sha256=lvJEWm9Gkp77_QQ1PMyum9CLEXFkyqT_7MtCyPZYMsA,15159
|
|
23
23
|
pythonnative/utils.py,sha256=-hwe_YS19ebpjeygdl3dGeVsYzO4G74rYD53svSi0rI,7593
|
|
24
24
|
pythonnative/cli/__init__.py,sha256=NM1psvKe8jT0vzp8Ak4MMoygZz4P_msk5g-YEsY8xLk,232
|
|
25
|
-
pythonnative/cli/pn.py,sha256=
|
|
25
|
+
pythonnative/cli/pn.py,sha256=a0DXYHvcDZtfsmC91mIKgCFTO1Y8T-kkS68RH8_7kaY,28191
|
|
26
26
|
pythonnative/native_modules/__init__.py,sha256=pgigpHuzT-rqwcjlwJvu93_4L8Nozal1HJid0S_JlmM,2636
|
|
27
27
|
pythonnative/native_modules/app_state.py,sha256=EnfChi_YWEgUpZosUiBQh0CmblBZFw8ZGaW1NKIJ4WM,2666
|
|
28
28
|
pythonnative/native_modules/battery.py,sha256=gOU9aN5fCmWfHgTXPD-BgvatdQnyUjfVfsJM7PQ_ARA,4317
|
|
29
29
|
pythonnative/native_modules/biometrics.py,sha256=9Xy34tqot4H3m6AYUyPHBFxPeFPg1ZATVxWiGQIAnsA,4917
|
|
30
|
-
pythonnative/native_modules/camera.py,sha256=
|
|
30
|
+
pythonnative/native_modules/camera.py,sha256=y-t8rAvwpJV7Qk460vWYrmpD2jsHPOVhxKEOMXEVAdo,11225
|
|
31
31
|
pythonnative/native_modules/clipboard.py,sha256=LZFtZ3GSd0TbJ68i-zOQCnRBW-GnewbCNmXgWAggApc,3674
|
|
32
32
|
pythonnative/native_modules/file_system.py,sha256=hl-52B6cirOzY6IDDxCjgSGlteiFgyWneiDmwRR4er0,7541
|
|
33
|
-
pythonnative/native_modules/haptics.py,sha256=
|
|
33
|
+
pythonnative/native_modules/haptics.py,sha256=YklgquXUFyQS2a6AizflJj-dM2LHyS86RdwLySFusWw,5676
|
|
34
34
|
pythonnative/native_modules/linking.py,sha256=dny2geVaO975JYxoc7DD_PvGs2FyZ1QvZ7JySxbv5dY,5044
|
|
35
|
-
pythonnative/native_modules/location.py,sha256=
|
|
35
|
+
pythonnative/native_modules/location.py,sha256=K_zXUP6XWqJt3qqUMkop_TdMn-yOQB_2TZ18eEQ9Rdc,7606
|
|
36
36
|
pythonnative/native_modules/net_info.py,sha256=QGoi4xZqk9IMyKR9m-delWNRDjEgYRDmxK4lGhZpLoE,5104
|
|
37
37
|
pythonnative/native_modules/notifications.py,sha256=WVtzdimc_aGfnxU6syCFPkjHF9YRRc97UVK3--TBwoU,7115
|
|
38
|
-
pythonnative/native_modules/permissions.py,sha256=
|
|
39
|
-
pythonnative/native_modules/secure_store.py,sha256=
|
|
38
|
+
pythonnative/native_modules/permissions.py,sha256=ABIWiCuLIiZJmfA-B7dnw56_Iz7ApGzdtLAs6X694QU,6704
|
|
39
|
+
pythonnative/native_modules/secure_store.py,sha256=PsnUwHzUPt-CzCAwM6BhidOBi9yofRD2uNtQIqAGofU,5953
|
|
40
40
|
pythonnative/native_modules/share.py,sha256=B9ovknmnjeQvGQ8MQ14Hmq6E1x-JA469APMburJ0KUg,4727
|
|
41
41
|
pythonnative/native_views/__init__.py,sha256=8RK0o8pixuqyHhiT5HMWDiya2vHBRJhntjjXzB2HB-U,15638
|
|
42
|
-
pythonnative/native_views/android.py,sha256=
|
|
43
|
-
pythonnative/native_views/base.py,sha256=
|
|
44
|
-
pythonnative/native_views/desktop.py,sha256=
|
|
45
|
-
pythonnative/native_views/ios.py,sha256=
|
|
42
|
+
pythonnative/native_views/android.py,sha256=RAly8MHQMWt2SY6GNqQB_FYeZpKmivo5Ja7N5LAuAo8,109796
|
|
43
|
+
pythonnative/native_views/base.py,sha256=NFDlEIoKCINzcVkf2uobT9TgujPb1RClLS3TzwH72MY,9668
|
|
44
|
+
pythonnative/native_views/desktop.py,sha256=731Uz-TPb0lGhPAcAo_8l-8B62lgZIr8h_H1BViSFGw,57116
|
|
45
|
+
pythonnative/native_views/ios.py,sha256=ySsTKYRcVLfbaw60U6yNTguEOSYqXLC_8xy59G4hjA4,141502
|
|
46
46
|
pythonnative/project/__init__.py,sha256=kAhWLONs53H1L7xVtczLmzYcQSOOkdRZTAJnIMhpBts,2064
|
|
47
47
|
pythonnative/project/android.py,sha256=SX0uu4-tz4WdYAf9sbycQPSmoQ8fbtAADeUWk9G8ybM,19127
|
|
48
|
-
pythonnative/project/builder.py,sha256=
|
|
49
|
-
pythonnative/project/config.py,sha256=
|
|
50
|
-
pythonnative/project/doctor.py,sha256=
|
|
51
|
-
pythonnative/project/icons.py,sha256=
|
|
52
|
-
pythonnative/project/ios.py,sha256=
|
|
53
|
-
pythonnative/project/permissions.py,sha256
|
|
54
|
-
pythonnative/project/runtime_assets.py,sha256=
|
|
48
|
+
pythonnative/project/builder.py,sha256=DokY-YidsDeWYgaixrpD3Kzp7_XudibltI8X_WdBIcE,19096
|
|
49
|
+
pythonnative/project/config.py,sha256=LeaRgwXznuk2hazbM2aOIDGeZ6FBoSkUBVmony5Wg-Q,24210
|
|
50
|
+
pythonnative/project/doctor.py,sha256=ETg-lvEyaNzaxgsDn9f4DBapNKBttMHA-9kwgX-yb3g,7943
|
|
51
|
+
pythonnative/project/icons.py,sha256=GaXpktQ9v4v2JZPM3ppueNPmwjTuFiLanHJDaZbLGuo,7945
|
|
52
|
+
pythonnative/project/ios.py,sha256=DHQs_Wf_uJ9eoI3gqGmcjFuF2shwMwa8mLKGtuTDffw,14004
|
|
53
|
+
pythonnative/project/permissions.py,sha256=-HwhSDtibiNKVo7hUueSwqZZC2t04htuFvErOaq0XoU,13230
|
|
54
|
+
pythonnative/project/runtime_assets.py,sha256=ZfROvVKb0GTR3zGcfrW8-MTd4Oz2UEaEA8sHUEzo7Kw,10159
|
|
55
55
|
pythonnative/sdk/__init__.py,sha256=btIRfW2yy2d2LzjdpFnlc6ym-G3iJj9sVUbb2IlFMOI,3384
|
|
56
|
-
pythonnative/sdk/_components.py,sha256=
|
|
56
|
+
pythonnative/sdk/_components.py,sha256=b8cvaqqNE7QGz0FTzZbpIzlewZCKJfEP_4AI9gmF8pg,14651
|
|
57
57
|
pythonnative/templates/android_template/build.gradle,sha256=4gE6CRS6RuBu9kp-_e_uYYU9mBgHVZrqQg9caSxgyuc,352
|
|
58
58
|
pythonnative/templates/android_template/gradle.properties,sha256=REPaKLRfQiiVfIV8wYmgwzPWvF1f3bhh_kAMV9p4HME,1358
|
|
59
59
|
pythonnative/templates/android_template/gradlew,sha256=YxNShxF6Hm0SyEWA8fScYdG6AiGOzShmBgXpf5dufWU,5766
|
|
@@ -100,14 +100,14 @@ pythonnative/templates/ios_template/ios_template/Assets.xcassets/AccentColor.col
|
|
|
100
100
|
pythonnative/templates/ios_template/ios_template/Assets.xcassets/AppIcon.appiconset/Contents.json,sha256=VUwGr7K_geOvQjFh5VKB6iVXV1mi0tjGMinUmB2JvQs,177
|
|
101
101
|
pythonnative/templates/ios_template/ios_template/Base.lproj/LaunchScreen.storyboard,sha256=HJWMXGXzJJWbBcAvFwAE8_Wq0p6coMJUV2fv1baxVhY,1665
|
|
102
102
|
pythonnative/templates/ios_template/ios_template/Base.lproj/Main.storyboard,sha256=lI9KBZGkZ9MsIc3xjxXwHUC83jHE__tMsTuATmtQtRE,1604
|
|
103
|
-
pythonnative/templates/ios_template/ios_template.xcodeproj/project.pbxproj,sha256=
|
|
103
|
+
pythonnative/templates/ios_template/ios_template.xcodeproj/project.pbxproj,sha256=oJI7k4IA0xPfky4-Sz45dSUkmJKQ9XHET5pNEfkfowk,25604
|
|
104
104
|
pythonnative/templates/ios_template/ios_template.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist,sha256=36D5u4W5XMupxoEa2t-MtAf7XVIIjonbg-vDCOxEhUI,238
|
|
105
105
|
pythonnative/templates/ios_template/ios_templateTests/ios_templateTests.swift,sha256=YnwzZx7yXB13xKAXEGNgz17VuhWeqkHTRTtBJ2Vu3_E,1238
|
|
106
|
-
pythonnative/templates/ios_template/ios_templateUITests/ios_templateUITests.swift,sha256=
|
|
106
|
+
pythonnative/templates/ios_template/ios_templateUITests/ios_templateUITests.swift,sha256=HLRr3cmouRqQeXG13WrZ2XSAmgMgCsNXfZpbwkxeFcs,1385
|
|
107
107
|
pythonnative/templates/ios_template/ios_templateUITests/ios_templateUITestsLaunchTests.swift,sha256=f5JrG0uVtLMeJQy26Yyz7Om-JUkT220osqcbeIVkj2g,815
|
|
108
|
-
pythonnative-0.22.
|
|
109
|
-
pythonnative-0.22.
|
|
110
|
-
pythonnative-0.22.
|
|
111
|
-
pythonnative-0.22.
|
|
112
|
-
pythonnative-0.22.
|
|
113
|
-
pythonnative-0.22.
|
|
108
|
+
pythonnative-0.22.1.dist-info/licenses/LICENSE,sha256=A69iG7TIAe6KkGQf6xoVHkc5JSZtOr5eRSvC5iuivnI,1067
|
|
109
|
+
pythonnative-0.22.1.dist-info/METADATA,sha256=8AdKrxbqYwpGdyEc69TN-a6_4T1Sg20NDHkMv1sEbV4,10347
|
|
110
|
+
pythonnative-0.22.1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
111
|
+
pythonnative-0.22.1.dist-info/entry_points.txt,sha256=iUtDawWSAJAEyWTycpZxDuYz73ol31butpzDIEAgPO0,48
|
|
112
|
+
pythonnative-0.22.1.dist-info/top_level.txt,sha256=kT4SEATY2ywzrZ2Pgea6_zxyym44Q_PbOsUoOYjJLFE,13
|
|
113
|
+
pythonnative-0.22.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|