mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2025-05-11 21:15:37 +02:00
feat: add env vars to repo.
This commit is contained in:
parent
2aaed14a3a
commit
e55cd6a938
5 changed files with 14 additions and 17 deletions
|
@ -5,20 +5,11 @@ part 'env_class.g.dart';
|
|||
@Envied()
|
||||
abstract class Env {
|
||||
@EnviedField(varName: 'sentryDSN')
|
||||
static const sentryDSN = _Env.sentryDSN;
|
||||
static String sentryDSN = _Env.sentryDSN;
|
||||
|
||||
@EnviedField(varName: 'apiKey')
|
||||
static const apiKey = _Env.apiKey;
|
||||
static String apiKey = _Env.apiKey;
|
||||
|
||||
@EnviedField(varName: 'appId')
|
||||
static const appId = _Env.appId;
|
||||
|
||||
@EnviedField(varName: 'messagingSenderI')
|
||||
static const messagingSenderId = _Env.messagingSenderId;
|
||||
|
||||
@EnviedField(varName: 'projectId')
|
||||
static const projectId = _Env.projectId;
|
||||
|
||||
@EnviedField(varName: 'storageBucket')
|
||||
static const storageBucket = _Env.storageBucket;
|
||||
static String appId = _Env.appId;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue