Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/flake-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: DeterminateSystems/nix-installer-action@v20
- uses: cachix/cachix-action@v16
with:
name: zz-android
name: zz-flutter-client
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- uses: DeterminateSystems/flake-checker-action@v12

Expand All @@ -34,7 +34,7 @@ jobs:
- uses: DeterminateSystems/nix-installer-action@v20
- uses: cachix/cachix-action@v16
with:
name: zz-android
name: zz-flutter-client
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- uses: DeterminateSystems/update-flake-lock@v27
with:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/security-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
REPOSITORY: flutter-client

jobs:
checkout:
Expand All @@ -23,7 +24,7 @@ jobs:
- name: Save repo to artifact
uses: actions/upload-artifact@v4
with:
name: flutter-client
name: "${{ env.REPOSITORY }}"
path: .
overwrite: true
if-no-files-found: error
Expand All @@ -41,7 +42,7 @@ jobs:
- name: Download repo artifact
uses: actions/download-artifact@v5
with:
name: flutter-client
name: "${{ env.REPOSITORY }}"
path: .

- name: GitGuardian scan
Expand Down
5 changes: 3 additions & 2 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

android {
namespace = "com.example.zprofile"
namespace = "com.zprofile.client"
compileSdk = flutter.compileSdkVersion

// ndkVersion = flutter.ndkVersion
Expand All @@ -23,7 +23,7 @@ android {
defaultConfig {
// TODO: Specify your own unique Application ID
// (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.example.zprofile"
applicationId = "com.zprofile.client"
// You can update the following values to match your application needs.
// For more information, see: https://flutter.dev/to/review-gradle-config.
// minSdk = flutter.minSdkVersion
Expand All @@ -33,6 +33,7 @@ android {
minSdk = 24
targetSdk = 36
buildToolsVersion = "36.0.0"
manifestPlaceholders["appAuthRedirectScheme"] = "zprofile"
}

buildTypes {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.zprofile
package com.zprofile.client

import io.flutter.embedding.android.FlutterActivity

Expand Down
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
description = "Android client";
description = "Mobile application for ZProfile";

inputs = {
devenv-root = {
Expand Down Expand Up @@ -44,7 +44,7 @@
};

devenv.shells.default = {
name = "Android client";
name = "Mobile application for ZProfile";

languages.kotlin.enable = true;
secretspec.enable = true;
Expand Down
1 change: 1 addition & 0 deletions lib/controller/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions lib/entity/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions lib/repository/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions lib/service/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions lib/view/LoginView.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
class LoginView {}
1 change: 1 addition & 0 deletions lib/viewmodel/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: zprofile
description: "A new Flutter project."
description: "Android application for interacting with ZProfile"
# The following line prevents the package from being accidentally published to
# pub.dev using `flutter pub publish`. This is preferred for private packages.
publish_to: "none" # Remove this line if you wish to publish to pub.dev
Expand Down