Skip to content

Commit b3eec40

Browse files
committed
Bugfixes and example update
1 parent 3f3ecdb commit b3eec40

File tree

21 files changed

+64
-209
lines changed

21 files changed

+64
-209
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
## 0.7.1
2+
- Fixed error during build
3+
14
## 0.7.0
25
- First version

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Simon Leier
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

example/.gitignore

Lines changed: 2 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
!android/
2-
!ios/
3-
41
# Miscellaneous
52
*.class
6-
*.lock
73
*.log
84
*.pyc
95
*.swp
@@ -19,37 +15,16 @@
1915
*.iws
2016
.idea/
2117

22-
# Visual Studio Code related
2318
.vscode/
2419

25-
# Flutter repo-specific
26-
/bin/cache/
27-
/bin/mingit/
28-
/dev/benchmarks/mega_gallery/
29-
/dev/bots/.recipe_deps
30-
/dev/bots/android_tools/
31-
/dev/docs/doc/
32-
/dev/docs/flutter.docs.zip
33-
/dev/docs/lib/
34-
/dev/docs/pubspec.yaml
35-
/packages/flutter/coverage/
36-
version
37-
38-
# packages file containing multi-root paths
39-
.packages.generated
40-
4120
# Flutter/Dart/Pub related
4221
**/doc/api/
4322
.dart_tool/
4423
.flutter-plugins
4524
.packages
4625
.pub-cache/
4726
.pub/
48-
build/
49-
flutter_*.png
50-
linked_*.ds
51-
unlinked.ds
52-
unlinked_spec.ds
27+
/build/
5328

5429
# Android related
5530
**/android/**/gradle-wrapper.jar
@@ -59,8 +34,6 @@ unlinked_spec.ds
5934
**/android/gradlew.bat
6035
**/android/local.properties
6136
**/android/**/GeneratedPluginRegistrant.java
62-
**/android/key.properties
63-
*.jks
6437

6538
# iOS/XCode related
6639
**/ios/**/*.mode1v3
@@ -88,12 +61,9 @@ unlinked_spec.ds
8861
**/ios/ServiceDefinitions.json
8962
**/ios/Runner/GeneratedPluginRegistrant.*
9063

91-
# Coverage
92-
coverage/
93-
9464
# Exceptions to above rules.
9565
!**/ios/**/default.mode1v3
9666
!**/ios/**/default.mode2v3
9767
!**/ios/**/default.pbxuser
9868
!**/ios/**/default.perspectivev3
99-
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
69+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages

example/.metadata

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# This file should be version controlled and should not be manually edited.
55

66
version:
7-
revision: 7a4c33425ddd78c54aba07d86f3f9a4a0051769b
7+
revision: b712a172f9694745f50505c93340883493b505e5
88
channel: stable
99

1010
project_type: app

example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ android {
3333

3434
defaultConfig {
3535
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
36-
applicationId "com.example.logger_flutter_example"
36+
applicationId "com.github.leisim.example"
3737
minSdkVersion 16
3838
targetSdkVersion 28
3939
versionCode flutterVersionCode.toInteger()

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.logger_flutter_example">
2+
package="com.github.leisim.example">
33
<application
44
android:name="io.flutter.app.FlutterApplication"
5-
android:label="logger_flutter_example"
5+
android:label="example"
66
android:icon="@drawable/ic_launcher">
77
<activity
88
android:name=".MainActivity"

example/android/app/src/main/java/com/example/logger_flutter_example/MainActivity.java

Lines changed: 0 additions & 13 deletions
This file was deleted.
-177 Bytes
Loading

example/android/gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
org.gradle.jvmargs=-Xmx1536M
2+

example/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<plist version="1.0">
44
<dict>
55
<key>CFBundleDevelopmentRegion</key>
6-
<string>en</string>
6+
<string>$(DEVELOPMENT_LANGUAGE)</string>
77
<key>CFBundleExecutable</key>
88
<string>App</string>
99
<key>CFBundleIdentifier</key>

0 commit comments

Comments
 (0)