Skip to content

Commit 2fbbe59

Browse files
update appId (#37)
* fix appId * fix ios plist and gradle version * update to 0.5.1 * fix android example * readd Podfile * fix iOS example
1 parent ae66db5 commit 2fbbe59

File tree

19 files changed

+177
-207
lines changed

19 files changed

+177
-207
lines changed

.flutter-plugins

Lines changed: 0 additions & 2 deletions
This file was deleted.

example/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ android {
3333

3434
defaultConfig {
3535
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
36-
applicationId "fr.santetis.flutter_camera_ml_vision_example"
36+
applicationId "fr.rushioconsulting.flutter_camera_ml_vision_example"
3737
minSdkVersion 21
3838
targetSdkVersion 28
3939
versionCode flutterVersionCode.toInteger()
4040
versionName flutterVersionName
41-
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
41+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
4242
}
4343

4444
buildTypes {

example/android/app/gradle.properties

Lines changed: 0 additions & 2 deletions
This file was deleted.

example/android/app/src/debug/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="fr.santetis.flutter_camera_ml_vision_example">
2+
package="fr.rushioconsulting.flutter_camera_ml_vision_example">
33
<!-- Flutter needs it to communicate with the running application
44
to allow setting breakpoints, to provide hot reload, etc.
55
-->

example/android/app/src/main/AndroidManifest.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="fr.santetis.flutter_camera_ml_vision_example" xmlns:tools="http://schemas.android.com/tools"
3-
>
4-
<uses-sdk tools:overrideLibrary="io.flutter.plugins.camera"/>
2+
package="fr.rushioconsulting.flutter_camera_ml_vision_example"
3+
xmlns:tools="http://schemas.android.com/tools">
4+
55
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
66
calls FlutterMain.startInitialization(this); in its onCreate method.
77
In most cases you can leave this as-is, but you if you want to provide
88
additional functionality it is fine to subclass or reimplement
99
FlutterApplication and put your custom class here. -->
1010
<application
11-
1211
android:name="io.flutter.app.FlutterApplication"
13-
android:label="example"
12+
android:label="flutter_camera_ml_vision_example"
1413
android:icon="@mipmap/ic_launcher">
1514
<activity
1615
android:name=".MainActivity"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package fr.santetis.flutter_camera_ml_vision_example;
1+
package fr.rushioconsulting.flutter_camera_ml_vision_example;
22

33
import android.os.Bundle;
44
import io.flutter.app.FlutterActivity;

example/android/app/src/profile/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="fr.santetis.flutter_camera_ml_vision_example">
2+
package="fr.rushioconsulting.flutter_camera_ml_vision_example">
33
<!-- Flutter needs it to communicate with the running application
44
to allow setting breakpoints, to provide hot reload, etc.
55
-->

example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
}
66

77
dependencies {
8-
classpath 'com.android.tools.build:gradle:3.3.0'
8+
classpath 'com.android.tools.build:gradle:3.4.0'
99
classpath 'com.google.gms:google-services:4.0.1'
1010
}
1111
}

example/android/gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
org.gradle.jvmargs=-Xmx1536M
2+
android.enableJetifier=true
3+
android.useAndroidX=true
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Fri Jun 23 08:50:38 CEST 2017
1+
#Thu May 16 21:43:49 CEST 2019
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip

0 commit comments

Comments
 (0)