Skip to content

Instantly share code, notes, and snippets.

View mariusbolik's full-sized avatar
🏠
Working from home

Marius Bolik mariusbolik

🏠
Working from home
View GitHub Profile
@mariusbolik
mariusbolik / build.gradle
Created October 1, 2018 16:44
Cordova: Fix Android build error by adding com.google.gms:google-services to build.gradle
buildscript {
repositories {
maven {
url "https://maven.google.com"
}
jcenter()
}
dependencies {
// NOTE: Do not place your application dependencies here; they belong
@mariusbolik
mariusbolik / something.ts
Created September 28, 2018 19:51
The way to use Cordova Plugin "App Rate" in other languages.
rateApp() {
this.platform.ready().then(() => {
if (this.platform.is('cordova')) {
this.appRate.preferences = {
displayAppName: 'Skills4School',
simpleMode: true,
useLanguage: 'en', // Needed. Otherwise will crash.
storeAppURL: {
ios: '1350221649',
android: 'market://details?id=de.skills4school.app'