-
Notifications
You must be signed in to change notification settings - Fork 3
/
notes
36 lines (25 loc) · 1.05 KB
/
notes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
===== CATATAN =====
#Flutter Web
flutter run -d chrome --no-sound-null-safety --web-renderer html
#Flutter Android
flutter build apk --release --no-sound-null-safety
#Flutter IOS
flutter build ios --release --no-sound-null-safety
#Keytool
keytool -exportcert -list -v -alias androiddebugkey -keystore C:\Users\dwipu\.android\debug.keystore
#Jika Keytool Tidak Ditemukan
- keytool -list -v -keystore debug.keystore
- keytool -genkey -v -keystore debug.keystore -alias androiddebugkey -keyalg RSA -validity 10000
- keytool -list -v -keystore debug.keystore
#Codemagic
-pre-build
#!/bin/sh
echo $ANDROID_FIREBASE_SECRET | base64 --decode > $FCI_BUILD_DIR/android/app/google-services.json
echo "Listing android Directory to confirm the google-services.json is there! "
ls android/app/
echo $IOS_FIREBASE_SECRET | base64 --decode > $FCI_BUILD_DIR/ios/Runner/GoogleService-Info.plist
echo "\nListing iOS Directory to confirm the GoogleService-Info.plist is there! "
ls ios/Runner/
-dependency caching
$HOME/.gradle/caches
$HOME/Library/Caches/CocoaPods