This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var Admob = require('ti.admob'); | |
var InLoco = require('com.inlocomedia.appcelerator'); | |
var admob; | |
var callbackInterstitial; | |
// Função é chamada toda vez que um banner tiver de ser aberto | |
function showInterstitialAds(callback) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ERROR] : Failed to run dexer: | |
[ERROR] : | |
[ERROR] : trouble writing output: Too many method references: 71190; max is 65536. | |
[ERROR] : You may try using --multi-dex option. | |
[ERROR] : References by package: | |
[ERROR] : 6 android.accessibilityservice | |
[ERROR] : 9 android.accounts | |
[ERROR] : 13 android.animation | |
[ERROR] : 393 android.app | |
[ERROR] : 9 android.bluetooth |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"parser": "babel-eslint", | |
"env": { | |
"browser": true | |
}, | |
"plugins": [ | |
"react" | |
], | |
"extends": [ | |
"eslint:recommended", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* MIT Licensed | |
* | |
* @author Fábio Pereira <[email protected]> | |
*/ | |
import {Storage} from "../../config"; | |
/* Tempo em minutos */ | |
const defaultTime = 15; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {AsyncStorage} from "react-native"; | |
class Storage { | |
constructor (name) { | |
this.name = `@${name.toUpperCase()}`; | |
} | |
add (key, value) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.inlocomediabridge.InlocoMedia; | |
import com.facebook.react.ReactPackage; | |
import com.facebook.react.bridge.JavaScriptModule; | |
import com.facebook.react.bridge.NativeModule; | |
import com.facebook.react.bridge.ReactApplicationContext; | |
import com.facebook.react.uimanager.ViewManager; | |
import java.util.ArrayList; | |
import java.util.Arrays; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Class SettingsModule | |
* | |
* @copyright (c) Climatempo 2017 | |
* | |
* @version 1.0.0 | |
* @author Fábio Pereira <[email protected]> | |
* | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Interrompe o script ao primeiro erro | |
set -e | |
# Nome do keystore que ira usar no jarsigner | |
keystore_name=nome_do_keystore | |
# Guardo o nome do usuario corrente | |
me=$(whoami) |