-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathrecreate.sh
More file actions
executable file
·24 lines (23 loc) · 1.2 KB
/
Copy pathrecreate.sh
File metadata and controls
executable file
·24 lines (23 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
flutter create --no-pub --overwrite . \
--project-name "flutter_rotation_sensor" \
--description "A package provides a stream of device's orientation in three different representations: a rotation matrix, a quaternion, and Euler angles (azimuth, pitch, roll)." \
--org "net.tlserver6y" \
--template "plugin"
git checkout HEAD -- "./.gitignore"
git checkout HEAD -- "./CHANGELOG.md"
git checkout HEAD -- "./android/src/main/kotlin/net/tlserver6y/flutter_rotation_sensor/FlutterRotationSensorPlugin.kt"
git clean -fd "./android/src/test/*"
git clean -fd "./example/ios/RunnerTests/"
git clean -fd "./example/integration_test/"
git checkout HEAD -- "./example/lib/*"
git clean -fd "./example/lib/"
git checkout HEAD -- "./example/README.md"
git clean -fd "./example/test/"
git checkout HEAD -- "./ios/flutter_rotation_sensor/Sources/flutter_rotation_sensor/FlutterRotationSensorPlugin.swift"
git checkout HEAD -- "./flutter_rotation_sensor.iml"
git checkout HEAD -- "./LICENSE"
git checkout HEAD -- "./lib/*"
git clean -fd "./lib/"
git checkout HEAD -- "./README.md"
git checkout HEAD -- "./test/*"
git clean -fd "./test/"