-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Used forms and added a makefile. See CHANGELOG.md
- Loading branch information
1 parent
5be47e2
commit c05b88a
Showing
12 changed files
with
170 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
org.gradle.jvmargs=-Xmx1536M | ||
org.gradle.java.home = /Users/ilesh/Library/Java/JavaVirtualMachines/openjdk-15.0.2/Contents/Home/ | ||
org.gradle.java.home = /Users/ilesh/Library/Java/JavaVirtualMachines/adopt-openjdk-15.0.2/Contents/Home/ | ||
android.useAndroidX=true | ||
android.enableJetifier=true | ||
android.enableR8=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+0 Bytes
(100%)
ios/build/XCBuildData/BuildDescriptionCacheIndex-971d7343dfcc9e1a0756d86c31095cb8
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
.PHONY: all build clean | ||
|
||
debug: | ||
flutter run | ||
|
||
test: | ||
flutter run --release | ||
|
||
clean: | ||
flutter clean | ||
rm -vrf Payload | ||
rm *.apk | ||
rm *.ipa | ||
|
||
build: | ||
flutter pub get | ||
flutter build apk | ||
flutter build ios | ||
cd build | ||
mkdir -p Payload | ||
cp -R ~/flutter_projects/bp_logger/build/ios/iphoneos/Runner.app "Payload/BP Logger.app" | ||
zip "bp_logger_v${VERSION}.ipa" Payload | ||
mv ~/flutter_projects/bp_logger/build/app/outputs/flutter-apk/app-release.apk bp_logger_v${VERSION}.apk | ||
gh release create v${VERSION} "bp_logger_v${VERSION}.ipa" "bp_logger_v${VERSION}.apk" -t "BP Logger ${VERSION}" -n "Native builds for sideloading" |
Oops, something went wrong.