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
override fun createView(ui: AnkoContext<PlanetDetailFragment>): View { | |
return with(ui) { | |
val container = verticalLayout { | |
lparams(matchParent) | |
textView { | |
setLineSpacing(8f, 1f) | |
}.lparams { | |
topMargin = dip(16) | |
} |
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
fun View.visible() { | |
visibility = View.VISIBLE | |
} | |
fun View.invisible() { | |
visibility = View.INVISIBLE | |
} | |
fun View.gone() { | |
visibility = View.GONE |
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
companion object { | |
const val PMD_FILE_NAME = "pmd-ruleset.xml" | |
const val CHECKSTYLE_FILE_NAME = "checkstyle.xml" | |
const val FINDBUGS_FILE_NAME = "findbugs-exclude.xml" | |
const val WRITE_PMD_CONFIG_FILE_TASK = "writePmdConfigFile" | |
const val WRITE_CHECK_STYLE_CONFIG_FILE_TASK = "writeCheckStyleConfigFile" | |
const val WRITE_FIND_BUGS_EXCLUSION_FILE_TASK = "writeFindBugsExclusionFile" | |
const val VERIFICATION_GROUP = "verification" | |
const val PLUGIN_EXTENSION_NAME = "qualityChecks" | |
} |
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
@Reusable | |
public class Migration implements RealmMigration | |
{ | |
private Map<Integer, Provider<VersionMigration>> versionMigrations; | |
@Inject | |
Migration (Map<Integer, Provider<VersionMigration>> versionMigrations) | |
{ | |
this.versionMigrations = versionMigrations; | |
} |
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
public class Migration implements RealmMigration | |
{ | |
@Override | |
public void migrate (DynamicRealm realm, long oldVersion, long newVersion) | |
{ | |
RealmSchema schema = realm.getSchema(); | |
if ( oldVersion == 1 ) | |
{ | |
RealmObjectSchema recipeSchema = schema.get( "Recipe" ); |
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
@Singleton | |
@Component( | |
modules = { | |
AppModule.class, JobsModule.class | |
} | |
) | |
public interface AppComponent | |
{ | |
Application getApplication (); |
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
package <your_package>; | |
import android.support.test.espresso.intent.rule.IntentsTestRule; | |
import android.support.test.runner.AndroidJUnit4; | |
import android.test.suitebuilder.annotation.LargeTest; | |
import org.junit.After; | |
import org.junit.Rule; | |
import org.junit.Test; | |
import org.junit.runner.RunWith; |
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
package info.adavis.sample.models; | |
/** | |
* Sample Domain Object used for demonstration | |
* | |
* @author Annyce Davis | |
*/ | |
public class Video { | |
private long id; |
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
package info.adavis.sample.models; | |
/** | |
* Sample Domain Object used for demonstration | |
* | |
* @author Annyce Davis | |
*/ | |
public class Video { | |
private long id; |
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
<FindBugsFilter> | |
<Match> | |
<Class name="~.*R\$.*"/> | |
</Match> | |
<Match> | |
<Class name="~.*Manifest\$.*"/> | |
</Match> | |
<Match> | |
<Class name="~.*_234$"/> | |
</Match> |