We target everyone who want to learn something new or chat with other or use some simple tools like : calculator and degrees converter.
With this app, you can log in with a Google Account or register a new account and also you can play and use some useful tools like :
- Login Screen: you can login with email and password, or sign in with Google account:
- Registration Screen : You can register a new account and join in with it later.
- Chat App: you can chat with your friends through this app in realtime.
- Connect 3 Game: you can play connect 3 games with your friends.
- Media Players: You can play and enjoy some music and videos and more.
- Calculator: You can use a calculator and make simple operations.
- JavaTpoint Website: You can view the Java T Point website and study more in the programming language in tech fields.
- Temperature Converter: You can convert the degrees from celsius and fahrenhiet and the oppisite.
- Google Maps: You can get your current location using Google Maps.
- Mobile PDF: You can see the basic and fundamental topics in mobile development.
- App is written solely in the Java programming language.
- Android Studio version 4.1.0
- Gradle version 6.5
- Get current location using Google Maps API
- Firebase Authentication
- Firebase Database
- Firebase Storage
- Adding UI Widget
- Java language will be used for development in all this designs
- All versions of gradle and android studio are stable.
dependecies {
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
//design
//noinspection GradleCompatible
/this for drawer Layout
implementation "androidx.drawerlayout:drawerlayout:1.1.1"
//This for using rounded image
implementation 'com.makeramen:roundedimageview:2.3.0'
//Loading image
implementation 'com.squareup.picasso:picasso:2.5.2'
// sdp library
implementation 'com.intuit.sdp:sdp-android:1.0.6'
//Maps
implementation 'com.google.android.gms:play-services-maps:17.0.0'
implementation 'com.google.android.gms:play-services-location:17.1.0'
//butterKnife
implementation 'com.jakewharton:butterknife:10.2.3'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.3'
//for Navigation Drawer
implementation 'androidx.navigation:navigation-fragment:2.3.1'
implementation 'androidx.navigation:navigation-ui:2.3.1'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.2.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0'
//ExoPlayer
implementation 'com.google.android.exoplayer:exoplayer:2.12.0'
implementation 'com.google.android.exoplayer:exoplayer-core:2.12.0'
implementation 'com.google.android.exoplayer:exoplayer-dash:2.12.0'
implementation 'com.google.android.exoplayer:exoplayer-ui:2.12.0'
//PDF Viewer
implementation 'com.github.barteksc:android-pdf-viewer:2.8.2'
//Firebase
implementation 'com.google.firebase:firebase-database:19.5.1' //firebase database
implementation 'com.google.firebase:firebase-auth:20.0.0' //firebase authentication
implementation 'com.firebaseui:firebase-ui-database:6.4.0' //firebase UI databse
implementation 'com.google.firebase:firebase-storage'. //firebase storage
// Import the BoM for the Firebase platform
implementation platform('com.google.firebase:firebase-bom:26.0.0')
// Declare the dependency for the Cloud Storage library
// When using the BoM, you don't specify versions in Firebase library dependencies
//multiDex
implementation 'com.android.support:multidex:1.0.3'
//Google Sign-in
implementation 'com.google.android.gms:play-services-auth:18.1.0'
//Glide
implementation 'com.github.bumptech.glide:glide:4.11.0'
//Design
implementation 'com.google.android.material:material:1.2.1'
testImplementation 'junit:junit:4.13.1'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}