mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-04-04 08:30:41 +00:00
Update README.md
This commit is contained in:
parent
6c61528776
commit
e7987bc939
1 changed files with 8 additions and 35 deletions
43
README.md
43
README.md
|
@ -38,41 +38,18 @@ To build this app you need to install Flutter 3.24.5 stable. [How to install](ht
|
||||||
|
|
||||||
### 2. Project setup
|
### 2. Project setup
|
||||||
|
|
||||||
#### Restore _constants.dart_ file
|
#### Restore git-ignored files:
|
||||||
|
|
||||||
Create a file _lib/constants.dart_ and paste the following content:
|
Run the following script:
|
||||||
|
|
||||||
```dart
|
|
||||||
const String contactEmail = '';
|
|
||||||
const String iapServerUrl = '';
|
|
||||||
const String issuesReportUrl = '';
|
|
||||||
const String sourceCodeUrl = '';
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Stub IAP package
|
|
||||||
|
|
||||||
As part of the app's functionallity is in the private repo, you have to replace these lines in _pubspec.yaml_:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
m3_lightmeter_iap:
|
|
||||||
git:
|
|
||||||
url: "https://github.com/vodemn/m3_lightmeter_iap"
|
|
||||||
ref: main
|
|
||||||
```
|
|
||||||
|
|
||||||
with these:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
m3_lightmeter_iap:
|
|
||||||
path: iap
|
|
||||||
```
|
|
||||||
|
|
||||||
You can do it simply by running the script:
|
|
||||||
|
|
||||||
```console
|
```console
|
||||||
sh .github/scripts/stub_iap.sh
|
sh scripts/setup_fork.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Or create the files manually using the contents from the script.
|
||||||
|
|
||||||
|
#### Get dependencies
|
||||||
|
|
||||||
> If you are using VSCode, you can open the workspace like so: _File -> Open Workspace from File -> m3_lightmeter.code-workspace_. Otherwise you have to run `flutter pub get` command from the iap folder.
|
> If you are using VSCode, you can open the workspace like so: _File -> Open Workspace from File -> m3_lightmeter.code-workspace_. Otherwise you have to run `flutter pub get` command from the iap folder.
|
||||||
|
|
||||||
Then you can fetch all the neccessary dependencies and generate translation files by running the following commands:
|
Then you can fetch all the neccessary dependencies and generate translation files by running the following commands:
|
||||||
|
@ -82,11 +59,7 @@ flutter pub get
|
||||||
flutter pub run intl_utils:generate
|
flutter pub run intl_utils:generate
|
||||||
```
|
```
|
||||||
|
|
||||||
### 3. (Optional) Install Firebase
|
### 3. Build
|
||||||
|
|
||||||
Out of the box Firebase Crashlytics won't work. If you want to add Crashlytics to your local build please follow [this guide](https://firebase.google.com/docs/flutter/setup).
|
|
||||||
|
|
||||||
### 4. Build
|
|
||||||
|
|
||||||
- Checkout [Build .apk](.github/workflows/build_apk.yml) workflow for Android
|
- Checkout [Build .apk](.github/workflows/build_apk.yml) workflow for Android
|
||||||
- Checkout [Build .ipa](.github/workflows/build_ipa.yml) workflow for iOS
|
- Checkout [Build .ipa](.github/workflows/build_ipa.yml) workflow for iOS
|
||||||
|
|
Loading…
Reference in a new issue