This file contains 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 UIKit | |
@UIApplicationMain | |
class AppDelegate: UIResponder, UIApplicationDelegate { | |
var window: UIWindow? | |
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool { | |
// Override point for customization after application launch. |
This file contains 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
// Replace 'dependencies' in your build.gradle file with the following | |
// or add these to whatever other dependencies you have. | |
dependencies { | |
compile 'com.android.support:support-v4:13.0.+' | |
compile 'com.google.android.gms:play-services:3.1.36+' | |
compile('com.google.api-client:google-api-client:1.4.1-beta') { | |
exclude group: 'com.google.android.google-play-services' | |
} | |
compile 'com.google.http-client:google-http-client-gson:1.15.0-rc' |
This file contains 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
Moved to | |
https://github.com/romannurik/android-swipetodismiss |