-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge pull request #90 from LikeMindsCommunity/release/v2.0.1
Release/v2.0.1
- Loading branch information
Showing
17 changed files
with
522 additions
and
79 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import 'package:envied/envied.dart'; | ||
|
||
part 'credentials.g.dart'; | ||
|
||
///These are BETA sample community credentials | ||
@Envied(path: '.env.fb') | ||
abstract class FBCreds { | ||
@EnviedField(varName: 'API_KEY', obfuscate: true) | ||
static final String apiKey = _FBCreds.apiKey; | ||
@EnviedField(varName: 'APP_ID_AN', obfuscate: true) | ||
static final String appIdAN = _FBCreds.appIdAN; | ||
@EnviedField(varName: 'APP_ID_IOS', obfuscate: true) | ||
static final String appIdIOS = _FBCreds.appIdIOS; | ||
@EnviedField(varName: 'MESSAGING_SENDER_ID', obfuscate: true) | ||
static final String messagingSenderId = _FBCreds.messagingSenderId; | ||
@EnviedField(varName: 'PROJECT_ID', obfuscate: true) | ||
static final String projectId = _FBCreds.projectId; | ||
@EnviedField(varName: 'STORAGE_BUCKET', obfuscate: true) | ||
static final String storageBucket = _FBCreds.storageBucket; | ||
@EnviedField(varName: 'IOS_BUNDLE_ID', obfuscate: true) | ||
static final String iosBundleId = _FBCreds.iosBundleId; | ||
} |
Oops, something went wrong.