generated from kodecocodes/bkk-materials
-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from raywenderlich/updating-projects
Updating projects
- Loading branch information
Showing
5,228 changed files
with
134,728 additions
and
127,664 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
64 changes: 64 additions & 0 deletions
64
01-setting-up-your-environment/projects/final/.github/workflows/cicd.yml
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,64 @@ | ||
name: Test, build and deploy | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
push: | ||
branches: | ||
- develop | ||
|
||
permissions: read-all | ||
|
||
jobs: | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone Flutter repository with master channel | ||
uses: subosito/flutter-action@v2 | ||
with: | ||
channel: master | ||
|
||
- name: Run flutter doctor | ||
run: flutter doctor -v | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Get all packages and test | ||
run: make get && make testing | ||
|
||
android: | ||
name: Build Android | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone flutter repository with master channel | ||
uses: subosito/flutter-action@v2 | ||
with: | ||
channel: master | ||
|
||
- name: Run flutter doctor | ||
run: flutter doctor -v | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
|
||
- name: Clean, get and lint | ||
run: make clean && make get && make lint | ||
|
||
- name: Build apk | ||
run: flutter build apk | ||
|
||
- name: Firebase App Distribution | ||
uses: wzieba/Firebase-Distribution-Github-Action@v1 | ||
with: | ||
appId: ${{ secrets.FIREBASE_APP_ID_ANDROID }} | ||
token: ${{ secrets.FIREBASE_CLI_TOKEN }} | ||
groups: ${{ secrets.TESTERS_GROUPS }} | ||
file: build/app/outputs/flutter-apk/app-release.apk |
39 changes: 37 additions & 2 deletions
39
01-setting-up-your-environment/projects/final/packages/component_library/example/.metadata
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,10 +1,45 @@ | ||
# This file tracks properties of this Flutter project. | ||
# Used by Flutter tool to assess capabilities and perform upgrades etc. | ||
# | ||
# This file should be version controlled and should not be manually edited. | ||
# This file should be version controlled. | ||
|
||
version: | ||
revision: 4cc385b4b84ac2f816d939a49ea1f328c4e0b48e | ||
revision: e3c29ec00c9c825c891d75054c63fcc46454dca1 | ||
channel: stable | ||
|
||
project_type: app | ||
|
||
# Tracks metadata for the flutter migrate command | ||
migration: | ||
platforms: | ||
- platform: root | ||
create_revision: e3c29ec00c9c825c891d75054c63fcc46454dca1 | ||
base_revision: e3c29ec00c9c825c891d75054c63fcc46454dca1 | ||
- platform: android | ||
create_revision: e3c29ec00c9c825c891d75054c63fcc46454dca1 | ||
base_revision: e3c29ec00c9c825c891d75054c63fcc46454dca1 | ||
- platform: ios | ||
create_revision: e3c29ec00c9c825c891d75054c63fcc46454dca1 | ||
base_revision: e3c29ec00c9c825c891d75054c63fcc46454dca1 | ||
- platform: linux | ||
create_revision: e3c29ec00c9c825c891d75054c63fcc46454dca1 | ||
base_revision: e3c29ec00c9c825c891d75054c63fcc46454dca1 | ||
- platform: macos | ||
create_revision: e3c29ec00c9c825c891d75054c63fcc46454dca1 | ||
base_revision: e3c29ec00c9c825c891d75054c63fcc46454dca1 | ||
- platform: web | ||
create_revision: e3c29ec00c9c825c891d75054c63fcc46454dca1 | ||
base_revision: e3c29ec00c9c825c891d75054c63fcc46454dca1 | ||
- platform: windows | ||
create_revision: e3c29ec00c9c825c891d75054c63fcc46454dca1 | ||
base_revision: e3c29ec00c9c825c891d75054c63fcc46454dca1 | ||
|
||
# User provided section | ||
|
||
# List of Local paths (relative to this file) that should be | ||
# ignored by the migrate tool. | ||
# | ||
# Files that are not part of the templates will be ignored by default. | ||
unmanaged_files: | ||
- 'lib/main.dart' | ||
- 'ios/Runner.xcodeproj/project.pbxproj' |
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
3 changes: 2 additions & 1 deletion
3
...ojects/final/packages/component_library/example/android/app/src/debug/AndroidManifest.xml
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
3 changes: 2 additions & 1 deletion
3
...ects/final/packages/component_library/example/android/app/src/profile/AndroidManifest.xml
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
3 changes: 1 addition & 2 deletions
3
...final/packages/component_library/example/android/gradle/wrapper/gradle-wrapper.properties
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,6 +1,5 @@ | ||
#Fri Jun 23 08:50:38 CEST 2017 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip |
1 change: 1 addition & 0 deletions
1
...ting-up-your-environment/projects/final/packages/component_library/example/ios/.gitignore
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,3 +1,4 @@ | ||
**/dgph | ||
*.mode1v3 | ||
*.mode2v3 | ||
*.moved-aside | ||
|
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
1 change: 1 addition & 0 deletions
1
...ng-up-your-environment/projects/final/packages/component_library/example/linux/.gitignore
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 @@ | ||
flutter/ephemeral |
Oops, something went wrong.