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
// Load release signing info from keystore.properties | |
def keystoreProps = new Properties() | |
keystoreProps.load(new FileInputStream( | |
rootProject.file('keystore.properties'))) | |
keystoreProps.each { prop -> | |
if (!project.hasProperty(prop.key)) { | |
project.ext.set(prop.key, prop.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
1977 - A New Hope | |
1978 - Dawn of the Dead | |
1979 - Alien | |
1980 - The Empire Strikes Back | |
1981 - Escape from New York | |
1982 - Blade Runner | |
The Thing | |
1983 - Return of the Jedi | |
1984 - Ghostbusters | |
The Terminator |
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
#!/usr/bin/python | |
import sys | |
import os | |
import time | |
from datetime import datetime | |
def modtime(path): | |
print path |
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
:Mobile-Android:crashlyticsCleanupResourcesDebug | |
ERROR - Crashlytics Developer Tools error. | |
java.net.UnknownHostException: api.crashlytics.com: nodename nor servname provided, or not known | |
at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method) | |
at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:901) | |
at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1293) | |
at java.net.InetAddress.getAllByName0(InetAddress.java:1246) | |
at java.net.InetAddress.getAllByName(InetAddress.java:1162) | |
at java.net.InetAddress.getAllByName(InetAddress.java:1098) | |
at com.crashlytics.reloc.org.apache.http.impl.conn.SystemDefaultDnsResolver.resolve(SystemDefaultDnsResolver.java:44) |
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
try { | |
ActivityInfo activityInfo = getPackageManager().getActivityInfo(getComponentName(), 0); | |
setTitle(activityInfo.labelRes); | |
} catch (NameNotFoundException e) { | |
SFLog.w(String.format("%s is not a valid Activity", getComponentName())); | |
} |
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
/* | |
* Copyright 2013 Simple Finance Corporation. All rights reserved. | |
* | |
* 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 |
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
/* | |
* Copyright 2013 Tristan Waddington. All rights reserved. | |
* | |
* 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 |