create-turniza-app 1.0.8 → 1.0.10
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.
- package/package.json +1 -1
- package/templates/base/.gitignore.hbs +15 -1
- package/templates/web/wrangler.jsonc.hbs +0 -1
- package/templates/mobile/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java +0 -24
- package/templates/mobile/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/templates/mobile/ios/Runner/GeneratedPluginRegistrant.h +0 -19
- package/templates/mobile/ios/Runner/GeneratedPluginRegistrant.m +0 -21
package/package.json
CHANGED
|
@@ -20,11 +20,25 @@ pubspec.lock
|
|
|
20
20
|
app.*.symbols
|
|
21
21
|
app.*.map.json
|
|
22
22
|
|
|
23
|
+
# Flutter generated (local / machine-specific)
|
|
24
|
+
**/android/local.properties
|
|
25
|
+
**/ios/Flutter/Generated.xcconfig
|
|
26
|
+
**/ios/Flutter/ephemeral/
|
|
27
|
+
**/ios/Flutter/flutter_export_environment.sh
|
|
28
|
+
|
|
29
|
+
# Flutter auto-generated plugin registrants
|
|
30
|
+
**/android/**/GeneratedPluginRegistrant.java
|
|
31
|
+
**/ios/Runner/GeneratedPluginRegistrant.h
|
|
32
|
+
**/ios/Runner/GeneratedPluginRegistrant.m
|
|
33
|
+
|
|
23
34
|
# Android Studio build artifacts
|
|
24
35
|
**/android/app/debug
|
|
25
36
|
**/android/app/profile
|
|
26
37
|
**/android/app/release
|
|
27
38
|
|
|
39
|
+
# Gradle wrapper (downloaded automatically)
|
|
40
|
+
**/android/gradle/wrapper/gradle-wrapper.jar
|
|
41
|
+
|
|
28
42
|
# iOS
|
|
29
43
|
**/ios/Pods/
|
|
30
44
|
**/ios/.symlinks/
|
|
@@ -89,4 +103,4 @@ Desktop.ini
|
|
|
89
103
|
# ── Logs & misc ─────────────────────────────────────────────
|
|
90
104
|
*.log
|
|
91
105
|
*.class
|
|
92
|
-
*.pyc
|
|
106
|
+
*.pyc
|
package/templates/mobile/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
package io.flutter.plugins;
|
|
2
|
-
|
|
3
|
-
import androidx.annotation.Keep;
|
|
4
|
-
import androidx.annotation.NonNull;
|
|
5
|
-
import io.flutter.Log;
|
|
6
|
-
|
|
7
|
-
import io.flutter.embedding.engine.FlutterEngine;
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* Generated file. Do not edit.
|
|
11
|
-
* This file is generated by the Flutter tool based on the
|
|
12
|
-
* plugins that support the Android platform.
|
|
13
|
-
*/
|
|
14
|
-
@Keep
|
|
15
|
-
public final class GeneratedPluginRegistrant {
|
|
16
|
-
private static final String TAG = "GeneratedPluginRegistrant";
|
|
17
|
-
public static void registerWith(@NonNull FlutterEngine flutterEngine) {
|
|
18
|
-
try {
|
|
19
|
-
flutterEngine.getPlugins().add(new dev.flutter.plugins.integration_test.IntegrationTestPlugin());
|
|
20
|
-
} catch (Exception e) {
|
|
21
|
-
Log.e(TAG, "Error registering plugin integration_test, dev.flutter.plugins.integration_test.IntegrationTestPlugin", e);
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
}
|
|
Binary file
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Generated file. Do not edit.
|
|
3
|
-
//
|
|
4
|
-
|
|
5
|
-
// clang-format off
|
|
6
|
-
|
|
7
|
-
#ifndef GeneratedPluginRegistrant_h
|
|
8
|
-
#define GeneratedPluginRegistrant_h
|
|
9
|
-
|
|
10
|
-
#import <Flutter/Flutter.h>
|
|
11
|
-
|
|
12
|
-
NS_ASSUME_NONNULL_BEGIN
|
|
13
|
-
|
|
14
|
-
@interface GeneratedPluginRegistrant : NSObject
|
|
15
|
-
+ (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry;
|
|
16
|
-
@end
|
|
17
|
-
|
|
18
|
-
NS_ASSUME_NONNULL_END
|
|
19
|
-
#endif /* GeneratedPluginRegistrant_h */
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Generated file. Do not edit.
|
|
3
|
-
//
|
|
4
|
-
|
|
5
|
-
// clang-format off
|
|
6
|
-
|
|
7
|
-
#import "GeneratedPluginRegistrant.h"
|
|
8
|
-
|
|
9
|
-
#if __has_include(<integration_test/IntegrationTestPlugin.h>)
|
|
10
|
-
#import <integration_test/IntegrationTestPlugin.h>
|
|
11
|
-
#else
|
|
12
|
-
@import integration_test;
|
|
13
|
-
#endif
|
|
14
|
-
|
|
15
|
-
@implementation GeneratedPluginRegistrant
|
|
16
|
-
|
|
17
|
-
+ (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry {
|
|
18
|
-
[IntegrationTestPlugin registerWithRegistrar:[registry registrarForPlugin:@"IntegrationTestPlugin"]];
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
@end
|