Skip to content
This repository was archived by the owner on Jan 5, 2021. It is now read-only.

Commit 6e4c91f

Browse files
author
Luis Correa
committed
REM
1 parent 65d5721 commit 6e4c91f

File tree

148 files changed

+11564
-11557
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+11564
-11557
lines changed

.github/workflows/flutter-ci.yml

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1-
name: Flutter CI Unit-Testing
2-
3-
# This workflow is triggered on pushes to the repository.
4-
5-
on:
6-
push:
7-
branches:
8-
- master
9-
10-
# on: push # Default will running for every branch.
11-
12-
jobs:
13-
build:
14-
# This job will run on ubuntu virtual machine
15-
runs-on: ubuntu-latest
16-
steps:
17-
# Setup Java environment in order to build the Android app.
18-
- uses: actions/checkout@v1
19-
- uses: actions/setup-java@v1
20-
with:
21-
java-version: "12.x"
22-
23-
# Setup the flutter environment.
24-
- uses: subosito/flutter-action@v1
25-
with:
26-
channel: "stable"
27-
28-
# Get flutter dependencies.
29-
- run: flutter pub get
30-
31-
# Statically analyze the Dart code for any errors.
32-
- run: flutter analyze .
33-
34-
# Run widget tests for our flutter project.
35-
# - run: flutter test
1+
name: Flutter CI Unit-Testing
2+
3+
# This workflow is triggered on pushes to the repository.
4+
5+
on:
6+
push:
7+
branches:
8+
- master
9+
10+
# on: push # Default will running for every branch.
11+
12+
jobs:
13+
build:
14+
# This job will run on ubuntu virtual machine
15+
runs-on: ubuntu-latest
16+
steps:
17+
# Setup Java environment in order to build the Android app.
18+
- uses: actions/checkout@v1
19+
- uses: actions/setup-java@v1
20+
with:
21+
java-version: "12.x"
22+
23+
# Setup the flutter environment.
24+
- uses: subosito/flutter-action@v1
25+
with:
26+
channel: "stable"
27+
28+
# Get flutter dependencies.
29+
- run: flutter pub get
30+
31+
# Statically analyze the Dart code for any errors.
32+
- run: flutter analyze .
33+
34+
# Run widget tests for our flutter project.
35+
# - run: flutter test

.github/workflows/main.yml

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
1-
on:
2-
push:
3-
tags:
4-
- "*"
5-
name: Build and Release apk
6-
jobs:
7-
build:
8-
name: Build APK
9-
runs-on: ubuntu-latest
10-
steps:
11-
- uses: actions/checkout@v1
12-
- uses: actions/setup-java@v1
13-
with:
14-
java-version: "12.x"
15-
- uses: subosito/flutter-action@v1
16-
with:
17-
channel: "stable"
18-
- run: flutter pub get
19-
- run: flutter build apk --target-platform android-arm
20-
- name: Sign apk
21-
uses: r0adkll/sign-android-release@v1
22-
with:
23-
releaseDirectory: build/app/outputs/apk/release
24-
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
25-
alias: ${{ secrets.ALIAS }}
26-
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
27-
keyPassword: ${{ secrets.KEY_PASSWORD }}
28-
- name: Create a Release APK
29-
uses: ncipollo/release-action@v1
30-
with:
31-
artifacts: build/app/outputs/apk/release/app-release-signed.apk
32-
token: ${{ secrets.GITHUB_TOKEN }}
1+
on:
2+
push:
3+
tags:
4+
- "*"
5+
name: Build and Release apk
6+
jobs:
7+
build:
8+
name: Build APK
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v1
12+
- uses: actions/setup-java@v1
13+
with:
14+
java-version: "12.x"
15+
- uses: subosito/flutter-action@v1
16+
with:
17+
channel: "stable"
18+
- run: flutter pub get
19+
- run: flutter build apk --target-platform android-arm
20+
- name: Sign apk
21+
uses: r0adkll/sign-android-release@v1
22+
with:
23+
releaseDirectory: build/app/outputs/apk/release
24+
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
25+
alias: ${{ secrets.ALIAS }}
26+
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
27+
keyPassword: ${{ secrets.KEY_PASSWORD }}
28+
- name: Create a Release APK
29+
uses: ncipollo/release-action@v1
30+
with:
31+
artifacts: build/app/outputs/apk/release/app-release-signed.apk
32+
token: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
1-
2-
# Miscellaneous
3-
*.class
4-
*.log
5-
*.pyc
6-
*.swp
7-
.DS_Store
8-
.atom/
9-
.buildlog/
10-
.history
11-
.svn/
12-
13-
# IntelliJ related
14-
*.iml
15-
*.ipr
16-
*.iws
17-
.idea/
18-
19-
# The .vscode folder contains launch configuration and tasks you configure in
20-
# VS Code which you may wish to be included in version control, so this line
21-
# is commented out by default.
22-
#.vscode/
23-
24-
# Flutter/Dart/Pub related
25-
**/doc/api/
26-
.dart_tool/
27-
.flutter-plugins
28-
.flutter-plugins-dependencies
29-
.packages
30-
.pub-cache/
31-
.pub/
32-
/build/
33-
34-
# Web related
35-
lib/generated_plugin_registrant.dart
36-
37-
# Symbolication related
38-
app.*.symbols
39-
40-
# Obfuscation related
41-
app.*.map.json
42-
43-
# Exceptions to above rules.
44-
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
45-
android/app/local.properties
46-
contact_picker/example/android/local.properties
1+
2+
# Miscellaneous
3+
*.class
4+
*.log
5+
*.pyc
6+
*.swp
7+
.DS_Store
8+
.atom/
9+
.buildlog/
10+
.history
11+
.svn/
12+
13+
# IntelliJ related
14+
*.iml
15+
*.ipr
16+
*.iws
17+
.idea/
18+
19+
# The .vscode folder contains launch configuration and tasks you configure in
20+
# VS Code which you may wish to be included in version control, so this line
21+
# is commented out by default.
22+
#.vscode/
23+
24+
# Flutter/Dart/Pub related
25+
**/doc/api/
26+
.dart_tool/
27+
.flutter-plugins
28+
.flutter-plugins-dependencies
29+
.packages
30+
.pub-cache/
31+
.pub/
32+
/build/
33+
34+
# Web related
35+
lib/generated_plugin_registrant.dart
36+
37+
# Symbolication related
38+
app.*.symbols
39+
40+
# Obfuscation related
41+
app.*.map.json
42+
43+
# Exceptions to above rules.
44+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
45+
android/app/local.properties
46+
contact_picker/example/android/local.properties

.metadata

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# This file tracks properties of this Flutter project.
2-
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3-
#
4-
# This file should be version controlled and should not be manually edited.
5-
6-
version:
7-
revision: e6b34c2b5c96bb95325269a29a84e83ed8909b5f
8-
channel: stable
9-
10-
project_type: app
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: e6b34c2b5c96bb95325269a29a84e83ed8909b5f
8+
channel: stable
9+
10+
project_type: app

0 commit comments

Comments
 (0)