File tree 11 files changed +17
-18
lines changed
src/main/kotlin/video/api/flutter/uploader
11 files changed +17
-18
lines changed Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
3
zipStoreBase =GRADLE_USER_HOME
4
4
zipStorePath =wrapper/dists
5
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.7 -all.zip
5
+ distributionUrl =https\://services.gradle.org/distributions/gradle8.2 -all.zip
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import io.flutter.embedding.engine.plugins.activity.ActivityAware
6
6
import io.flutter.embedding.engine.plugins.activity.ActivityPluginBinding
7
7
8
8
9
- class UploaderPlugin : FlutterPlugin , ActivityAware {
9
+ class ApiVideoUploaderPlugin : FlutterPlugin , ActivityAware {
10
10
private val uploaderLiveDataHost = UploaderLiveDataHost ()
11
11
private var permissionManager: PermissionManager ? = null
12
12
private var methodCallHandlerImpl: MethodCallHandlerImpl ? = null
Original file line number Diff line number Diff line change 1
1
org.gradle.jvmargs =-Xmx1536M
2
2
android.useAndroidX =true
3
3
android.enableJetifier =true
4
- android.defaults.buildfeatures.buildconfig =true
5
4
android.nonTransitiveRClass =false
6
5
android.nonFinalResIds =false
Original file line number Diff line number Diff line change 21
21
<key >CFBundleVersion </key >
22
22
<string >1.0 </string >
23
23
<key >MinimumOSVersion </key >
24
- <string >11 .0 </string >
24
+ <string >12 .0 </string >
25
25
</dict >
26
26
</plist >
Original file line number Diff line number Diff line change 1
1
# Uncomment this line to define a global platform for your project
2
- platform :ios , '11 .0'
2
+ platform :ios , '12 .0'
3
3
4
4
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
5
5
ENV [ 'COCOAPODS_DISABLE_STATS' ] = 'true'
Original file line number Diff line number Diff line change 155
155
97C146E61CF9000F007C117D /* Project object */ = {
156
156
isa = PBXProject;
157
157
attributes = {
158
- LastUpgradeCheck = 1300 ;
158
+ LastUpgradeCheck = 1510 ;
159
159
ORGANIZATIONNAME = "";
160
160
TargetAttributes = {
161
161
97C146ED1CF9000F007C117D = {
342
342
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
343
343
GCC_WARN_UNUSED_FUNCTION = YES;
344
344
GCC_WARN_UNUSED_VARIABLE = YES;
345
- IPHONEOS_DEPLOYMENT_TARGET = 11 .0;
345
+ IPHONEOS_DEPLOYMENT_TARGET = 12 .0;
346
346
MTL_ENABLE_DEBUG_INFO = NO;
347
347
SDKROOT = iphoneos;
348
348
SUPPORTED_PLATFORMS = iphoneos;
421
421
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
422
422
GCC_WARN_UNUSED_FUNCTION = YES;
423
423
GCC_WARN_UNUSED_VARIABLE = YES;
424
- IPHONEOS_DEPLOYMENT_TARGET = 11 .0;
424
+ IPHONEOS_DEPLOYMENT_TARGET = 12 .0;
425
425
MTL_ENABLE_DEBUG_INFO = YES;
426
426
ONLY_ACTIVE_ARCH = YES;
427
427
SDKROOT = iphoneos;
470
470
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
471
471
GCC_WARN_UNUSED_FUNCTION = YES;
472
472
GCC_WARN_UNUSED_VARIABLE = YES;
473
- IPHONEOS_DEPLOYMENT_TARGET = 11 .0;
473
+ IPHONEOS_DEPLOYMENT_TARGET = 12 .0;
474
474
MTL_ENABLE_DEBUG_INFO = NO;
475
475
SDKROOT = iphoneos;
476
476
SUPPORTED_PLATFORMS = iphoneos;
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<Scheme
3
- LastUpgradeVersion = " 1300 "
3
+ LastUpgradeVersion = " 1510 "
4
4
version = " 1.3" >
5
5
<BuildAction
6
6
parallelizeBuildables = " YES"
Original file line number Diff line number Diff line change
1
+ #import < Flutter/Flutter.h>
2
+
3
+ @interface ApiVideoUploaderPlugin : NSObject <FlutterPlugin>
4
+ @end
Original file line number Diff line number Diff line change 1
- #import " UploaderPlugin .h"
1
+ #import " ApiVideoUploaderPlugin .h"
2
2
#if __has_include(<video_uploader/video_uploader-Swift.h>)
3
3
#import < video_uploader/video_uploader-Swift.h>
4
4
#else
8
8
#import " video_uploader-Swift.h"
9
9
#endif
10
10
11
- @implementation UploaderPlugin
11
+ @implementation ApiVideoUploaderPlugin
12
12
+ (void )registerWithRegistrar : (NSObject <FlutterPluginRegistrar>*)registrar {
13
13
[SwiftUploaderPlugin registerWithRegistrar: registrar];
14
14
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -31,10 +31,10 @@ flutter:
31
31
android :
32
32
package : video.api.flutter.uploader
33
33
dartPluginClass : ApiVideoMobileUploaderPlugin
34
- pluginClass : UploaderPlugin
34
+ pluginClass : ApiVideoUploaderPlugin
35
35
ios :
36
36
dartPluginClass : ApiVideoMobileUploaderPlugin
37
- pluginClass : UploaderPlugin
37
+ pluginClass : ApiVideoUploaderPlugin
38
38
web :
39
39
pluginClass : ApiVideoUploaderPlugin
40
40
fileName : src/web/apivideo_uploader_web.dart
You can’t perform that action at this time.
0 commit comments