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
| [ | |
| { | |
| "id": "5872fe0f-34cc-4cd7-aa61-3bc534916a29", | |
| "name": "Jon Snow", | |
| "born": "283 AC", | |
| "title": "Lord Comandante de la Guardia Nocturna", | |
| "actor": "Kit Harington", | |
| "quote": "Sometimes there Is no happy choice, only one less grievous than the others.", | |
| "father": "Ned Stark", | |
| "mother": "", |
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
| public class Cipher { | |
| public String rot13(String text) { | |
| char[] chars = text.toCharArray(); | |
| StringBuilder result = new StringBuilder(); | |
| for (char c : chars) { | |
| if (c >= 'a' && c <= 'm') c += 13; | |
| else if (c >= 'A' && c <= 'M') c += 13; | |
| else if (c >= 'n' && c <= 'z') c -= 13; |
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
| "{ \"name\":\"Mishel Vera\", \"job\":\"Software Engineer en Segundamano\" } }, { \"date\":\"10:20 \n-\n 11:00\", \"title\":\"Codelab: ¡Android es para todos!\", \"speaker\": { \"name\":\"Diego Ramírez\", \"job\":\"Mobile Engineer en Segundamano\" } }, { \"date\":\"11:00 \n-\n 11:40\", \"title\":\"Clean Architecture\", \"speaker\": { \"name\":\"Salvador Maurilio\", \"job\":\"Mobile Engineer en Inventive\" } }, { \"date\":\"11:00 \n-\n 11:40\", \"title\":\"Codelab: Mi primera app en Kotlin\", \"speaker\": { \"name\":\"Pedro Hernández\", \"job\":\"Software Engineer en Bunsan\" } }, { \"date\":\"11:40 \n-\n 12:20\", \"title\":\"Bítacora del capitán android\", \"speaker\": { \"name\":\"Noe Branagan\", \"job\":\"Mobile Engineer en Instacarrot\" } }, { \"date\":\"11:40 \n-\n 12:20\", \"title\":\"Codelab: Introducción a Xamarin\", \"speaker\": { \"name\":\"Humberto Jaimes\", \"job\":\"Microsoft - Xamarin MVP\" } }, { \"date\":\"12:20 \n-\n 13:00\", \"title\":\"Android Good Practices\", \"speaker\": { \"name\":\"Anahí |
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 android.os.Bundle | |
| import android.support.v7.app.AppCompatActivity | |
| import android.support.v7.widget.Toolbar | |
| /** | |
| * Licensed to the Apache Software Foundation (ASF) under one | |
| * or more contributor license agreements. See the NOTICE file | |
| * distributed with this work for additional information | |
| * regarding copyright ownership. The ASF licenses this file | |
| * to you under the Apache License, Version 2.0 (the |
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
| ext { | |
| //Packages | |
| supportPackage = 'com.android.support' | |
| retrofitPackage = 'com.squareup.retrofit2' | |
| jakeWhartonPackage = 'com.jakewharton' | |
| glidePackage = 'com.github.bumptech.glide' | |
| hdodenhofPackage = 'de.hdodenhof' | |
| reactivePackage = 'io.reactivex' | |
| eventBusPackage = 'de.greenrobot' |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <vector xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:width="212dp" | |
| android:height="212dp" | |
| android:viewportHeight="500" | |
| android:viewportWidth="500"> | |
| <group android:name="android"> | |
| <path | |
| android:name="head" |
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
| # Add project specific ProGuard rules here. | |
| # By default, the flags in this file are appended to flags specified | |
| # in /Users/Silmood/Library/Android/sdk/tools/proguard/proguard-android.txt | |
| # You can edit the include path and order by changing the proguardFiles | |
| # directive in build.gradle. | |
| # | |
| # For more details, see | |
| # http://developer.android.com/guide/developing/tools/proguard.html | |
| # Add any project specific keep options here: |
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
| # Project-wide Gradle settings. | |
| # IDE (e.g. Android Studio) users: | |
| # Gradle settings configured through the IDE *will override* | |
| # any settings specified in this file. | |
| # For more details on how to configure your build environment visit | |
| # http://www.gradle.org/docs/current/userguide/build_environment.html | |
| # Specifies the JVM arguments used for the daemon process. |
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: 'com.android.application' | |
| apply plugin: 'me.tatarka.retrolambda' | |
| def LAST_FM_API_KEY ='"' + LastFMApiKey + '"' ?: '"Define LastFm Api key"'; | |
| android { | |
| compileSdkVersion 22 | |
| buildToolsVersion "22.0.1" |
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
| public class Character { | |
| int id; | |
| String name; | |
| String description; | |
| Uri urlImage; | |
| int availableComics; | |
| int availableSeries; | |
| int availableStories; |