🏴☠️
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
apply plugin: 'kotlin-kapt' | |
dependencies { | |
compile 'com.google.dagger:dagger:2.12' | |
kapt 'com.google.dagger:dagger-compiler:2.12' | |
compile 'com.google.dagger:dagger-android:2.12' | |
kapt 'com.google.dagger:dagger-android-processor:2.12' | |
compile 'com.google.dagger:dagger-android-support:2.12' | |
} |
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
apply plugin: 'kotlin-kapt' | |
compile "com.google.dagger:dagger:2.12" | |
kapt "com.google.dagger:dagger-compiler:2.12" |
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
/** | |
* | |
* @author Rachit Mishra | |
* @licence The MIT License (MIT) Copyright (c) <2013> <Rachit Mishra> | |
* | |
*/ | |
import android.app.IntentService; | |
import android.app.NotificationManager; | |
import android.app.PendingIntent; |
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 in.xmlparser; | |
import java.io.FileInputStream; | |
import java.io.FileNotFoundException; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import org.xmlpull.v1.XmlPullParser; | |
import org.xmlpull.v1.XmlPullParserException; |
NewerOlder