pythonnative 0.21.0__py3-none-any.whl → 0.22.0__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 +14 -3
- pythonnative/animated.py +420 -135
- pythonnative/components.py +519 -235
- pythonnative/events.py +210 -0
- pythonnative/gestures.py +875 -0
- pythonnative/layout.py +463 -149
- pythonnative/mutations.py +130 -0
- pythonnative/native_views/__init__.py +161 -97
- pythonnative/native_views/android.py +1048 -1142
- pythonnative/native_views/base.py +108 -18
- pythonnative/native_views/desktop.py +460 -417
- pythonnative/native_views/ios.py +1918 -1916
- pythonnative/project/android.py +2 -2
- pythonnative/reconciler.py +540 -470
- pythonnative/screen.py +5 -2
- pythonnative/sdk/_components.py +2 -2
- pythonnative/templates/android_template/app/build.gradle +2 -0
- {pythonnative-0.21.0.dist-info → pythonnative-0.22.0.dist-info}/METADATA +5 -2
- {pythonnative-0.21.0.dist-info → pythonnative-0.22.0.dist-info}/RECORD +23 -21
- pythonnative/templates/android_template/app/src/main/java/com/pythonnative/android_template/PNVirtualListView.java +0 -129
- {pythonnative-0.21.0.dist-info → pythonnative-0.22.0.dist-info}/WHEEL +0 -0
- {pythonnative-0.21.0.dist-info → pythonnative-0.22.0.dist-info}/entry_points.txt +0 -0
- {pythonnative-0.21.0.dist-info → pythonnative-0.22.0.dist-info}/licenses/LICENSE +0 -0
- {pythonnative-0.21.0.dist-info → pythonnative-0.22.0.dist-info}/top_level.txt +0 -0
pythonnative/project/android.py
CHANGED
|
@@ -7,8 +7,8 @@ project for a specific [`AppConfig`][pythonnative.project.config.AppConfig]:
|
|
|
7
7
|
``com.pythonnative.android_template``; this module rewrites and moves
|
|
8
8
|
it to the app's own ``application_id`` so each app ships a distinct
|
|
9
9
|
package. The PythonNative Android runtime resolves its helper classes
|
|
10
|
-
(``Navigator
|
|
11
|
-
|
|
10
|
+
(``Navigator``) via ``getPackageName()``, so the relocation needs no
|
|
11
|
+
runtime configuration.
|
|
12
12
|
- **Identity & SDKs.** ``applicationId``, ``versionCode``/``versionName``,
|
|
13
13
|
``minSdk``/``targetSdk``/``compileSdk``, ABI filters, and the embedded
|
|
14
14
|
CPython version are written into ``app/build.gradle``.
|