Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Firebase Remote Config
Search
Nyi Nyi Zaw
January 10, 2020
Technology
0
68
Firebase Remote Config
Friday talk by codigo
Nyi Nyi Zaw
January 10, 2020
Tweet
Share
More Decks by Nyi Nyi Zaw
See All by Nyi Nyi Zaw
DevFest 2022 - How do we do code review
nyinyiz
0
39
Working with android 11 especially in Privacy(GDG)
nyinyiz
0
100
Sealed Classes for state management
nyinyiz
0
96
Road to ~100% Kotlin Android
nyinyiz
0
83
Do and Don't on android development
nyinyiz
1
130
Other Decks in Technology
See All in Technology
Flutter DevToolsで発見! 本番アプリのパフォーマンス問題と改善の実践
goto_tsl
1
230
エンジニアにとってコードと並んで重要な「データ」のお話 - データが動くとコードが見える:関数型=データフロー入門
ismk
0
440
CodexでもAgent Skillsを使いたい
gotalab555
9
4.1k
[JDDStudy #10] 社内Agent勉強会の取り組み紹介
yp_genzitsu
1
130
ソフトウェア品質を支える テストとレビュー再考 / 吉澤 智美さん
findy_eventslides
1
950
マウントとるやつ、リリースするやつ
otsuki
1
100
なぜインフラコードのモジュール化は難しいのか - アプリケーションコードとの本質的な違いから考える
mizzy
21
7k
設計は最強のプロンプト - AI時代に武器にすべきスキルとは?-
kenichirokimura
1
340
QAセントラル組織が運営する自動テストプラットフォームの課題と現状
lycorptech_jp
PRO
0
340
[mercari GEARS 2025] Keynote
mercari
PRO
0
150
LLM APIを2年間本番運用して苦労した話
ivry_presentationmaterials
16
11k
3年ぶりの re:Invent 今年の意気込みと前回の振り返り
kazzpapa3
0
190
Featured
See All Featured
Context Engineering - Making Every Token Count
addyosmani
9
370
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
46
2.6k
How GitHub (no longer) Works
holman
315
140k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
9
970
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
34
2.3k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
116
20k
The Power of CSS Pseudo Elements
geoffreycrofte
80
6k
Making Projects Easy
brettharned
120
6.4k
YesSQL, Process and Tooling at Scale
rocio
174
15k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
162
15k
A Tale of Four Properties
chriscoyier
161
23k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
285
14k
Transcript
Firebase Remote Config Friday Talk (Codigo)
What is firebase remote config?
What does Firebase Remote Configuration do? 1. behavior and appearance
of your app without requiring users to download an app update. 2. Need to create in-app default values 3. Can use Firebase console or Remote Config REST API 4. can frequently check for updates and apply them with a negligible impact on performance
How to use it? implementation 'com.google.firebase:firebase-config:19.1.0'
Remote Config process flow 1. Define Remote Configuration 2. Assign
Defaults for Parameters 3. Get the value from Remote Config 4. Update value in Remote Config
Thanks References : Firebase remote config by Eljo Prifti, Firebase
google