salyangoz / Updateme Android
A powerful force update library for Android
Stars: ✭ 59
Programming Languages
java
68154 projects - #9 most used programming language
Labels
Projects that are alternatives of or similar to Updateme Android
Ember Cloud Firestore Adapter
Unofficial Ember Data Adapter and Serializer for Cloud Firestore
Stars: ✭ 51 (-13.56%)
Mutual labels: firebase
Firebase As3
Integrate Firebase Auth, Realtime Database and Storage in your Adobe AIR projects.
Stars: ✭ 55 (-6.78%)
Mutual labels: firebase
Awesome Android Kotlin Apps
👓 A curated list of awesome android kotlin apps by open-source contributors.
Stars: ✭ 1,058 (+1693.22%)
Mutual labels: firebase
Geo On Fire
A library to create high performance geolocation queries for Firebase. Checkout the demos: https://run.plnkr.co/plunks/AYaN8ABEDcMntgbJyLVW/ and https://run.plnkr.co/plunks/xJgstAvXYcp0w7MbOOjm/
Stars: ✭ 54 (-8.47%)
Mutual labels: firebase
Laravel Fcm
🌐 A Laravel package to send Push Notifications to one or many devices of the user.
Stars: ✭ 56 (-5.08%)
Mutual labels: firebase
Firebase Admin Dashboard
Easily create admin dashboards for your Firebase powered apps.
Stars: ✭ 48 (-18.64%)
Mutual labels: firebase
Login Fire
An element that allows simple configuration of multiple provider login for firebase
Stars: ✭ 58 (-1.69%)
Mutual labels: firebase
Firebaseswift
Firebase REST API wrapper for use in server-side Swift
Stars: ✭ 54 (-8.47%)
Mutual labels: firebase
Angular 4 Material Pos
POS written in Angular 4 with Angular Material UI
Stars: ✭ 54 (-8.47%)
Mutual labels: firebase
Vue Pomo
A progressive web app for the Pomodoro Technique, built with Vue 2.0, Vuex and Firebase.
Stars: ✭ 51 (-13.56%)
Mutual labels: firebase
Simple firebase auth
Simple Firebase Login Flow in Flutter
Stars: ✭ 58 (-1.69%)
Mutual labels: firebase
Firebase Chat Sample
✉️ [Android] [Firebase] An example chat application built using the Firebase Android SDK
Stars: ✭ 55 (-6.78%)
Mutual labels: firebase
Ionic Social Login With Firebase
IONIC - Social Login with Firebase
Stars: ✭ 58 (-1.69%)
Mutual labels: firebase
Firebaseapp
Google Apps Script binding for Firebase Realtime Database
Stars: ✭ 57 (-3.39%)
Mutual labels: firebase
UpdateMe
A powerful force update library for Android
For more information please see the website
Download
Download the latest JAR or grab via Gradle. (Project's gradle file): This project uses Firebase remote config feature. Because of this reason you need to add google services into your project.
dependencies {
compile 'io.salyangoz.updateme:updateme:0.1.0'
}
apply plugin: 'com.google.gms.google-services'
or Maven:
<dependency>
<groupId>io.salyangoz.updateme</groupId>
<artifactId>updateme</artifactId>
<version>0.1.0</version>
</dependency>
Snapshots of the development version are available in Sonatype's snapshots repository.
Dependencies (Google Services)
Grab via Gradle: (Add it to project's main gradle file)
dependencies {
classpath 'com.google.gms:google-services:3.1.0'
}
Introduction
- Create Firebase project http://firebase.google.com
- Firebase will give you google-services.json file. Paste this file into your projects root directory.
- In the left menu choose remote config and add these parameters.
- Add these parameters
| Parameter Key | Default Value |
|---|---|
| android_update_me_required | Do you want to force update App (Ex: false |
| android_update_me_current_version | The version of your app(Ex: 1.0.0) |
| android_update_me_store_url | The store url(Ex: http://play.google.com/store/apps/com.salyangoz.torrentfinder) |
| android_update_me_dialog_title | Update dialog title(You can leave blank) |
| android_update_me_dialog_description | Update dialog message(You can leave blank) |
- Publish Changes (Top right corner)
Usage
Basic Usage
UpdateMe.with(this).check();
Advanced Usage
Features
- Set dialog visibility
- Add listeners to Positive and Negative button clicks.
- Set positive and negative button text and colors.
- Set custom icon
UpdateMe.with(this, 30).setDialogVisibility(true)
.continueButtonVisibility(true)
.setPositiveButtonText("MF Go!")
.setNegativeButtonText("Oh No...")
.setDialogIcon(R.drawable.common_google_signin_btn_icon_dark)
.onNegativeButtonClick(new OnNegativeButtonClickListener() {
@Override
public void onClick(LovelyStandardDialog dialog) {
Log.d(UpdateMe.TAG, "Later Button Clicked");
dialog.dismiss();
}
})
.onPositiveButtonClick(new OnPositiveButtonClickListener() {
@Override
public void onClick(LovelyStandardDialog dialog) {
Log.d(UpdateMe.TAG, "Update Button Clicked");
dialog.dismiss();
}
})
.check();
Special Thanks
Custom alert dialogs pulled from LovelyDialog for Android repository. https://github.com/yarolegovich/LovelyDialog
License
Copyright 2017 Salyangoz Teknoloji, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks,
for each open source project belongs to its rightful owner.
If you wish to add or remove any projects, please contact us at [email protected].

