Posts

Showing posts from October, 2021

how to upload image to firebase in android studio

 how to upload image to firebase in android studio 2021 Dependency //firebase implementation 'com.google.firebase:firebase-auth:19.2.0' implementation 'com.google.firebase:firebase-database:19.2.1' implementation 'com.google.firebase:firebase-storage' implementation platform( 'com.google.firebase:firebase-bom:26.3.0' ) implementation 'com.google.firebase:firebase-database-ktx' //picasso implementation 'com.squareup.picasso:picasso:2.5.2' User-Permissions < uses-permission android :name ="android.permission.CAMERA" /> < uses-permission android :name ="android.permission.INTERNET" /> < uses-permission android :name ="android.permission.READ_EXTERNAL_STORAGE" /> Xml Layout <? xml version ="1.0" encoding ="utf-8" ?> < RelativeLayout xmlns: android ="http://schemas.android.com/apk/res/android" xmlns: app ="http://schemas.android.com/apk/res-auto...