- We Love Mashup january 2014 - PontiRecords
- We Love Mashup february 2014 - PontiRecords
- Best Mashup Mix Vol. 3 - Eric Clapman
- Best Mashup Mix Vol. 5 - Eric Clapman
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' | |
| dependencies { | |
| compile fileTree(dir: 'libs', include: '*.jar') | |
| compile [...] | |
| } | |
| android { | |
| // Add a gradle.properties to your root to make this workd: |
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
| Africa/Abidjan | |
| Africa/Accra | |
| Africa/Addis_Ababa | |
| Africa/Algiers | |
| Africa/Asmara | |
| Africa/Asmera | |
| Africa/Bamako | |
| Africa/Bangui | |
| Africa/Banjul | |
| Africa/Bissau |
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
| private static final int NOT_UNIQUE = -1; | |
| /** | |
| * Adds an item in a list using it's comparable sort | |
| * | |
| * @param item the item to add | |
| * @param list the list to add to | |
| * @param uniq if true, reject duplicates | |
| * @param <A> if | |
| * @param <I> |
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
| /** | |
| * Resolve id | |
| * | |
| * @param context the context | |
| * @param id the id | |
| * @return the resolved id | |
| */ | |
| public static String resolveId( Context context, int id ) { | |
| StringBuilder out = new StringBuilder(); | |
| out.append(" #"); |
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 FlagUtils { | |
| /** | |
| * Packs booleans into an integer | |
| * | |
| * This does not check if the number of booleans is less then the number of bits in the integer | |
| * | |
| * @param params the booleans | |
| * | |
| * @return the packed integer |
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
| File propFile = file('signing.properties'); | |
| if (propFile.exists()) { | |
| def Properties props = new Properties() | |
| props.load(new FileInputStream(propFile)) | |
| if (props.containsKey('STORE_FILE') && | |
| props.containsKey('STORE_PASSWORD') && | |
| props.containsKey('KEY_ALIAS') && | |
| props.containsKey('KEY_PASSWORD')) { |
- Daily Droid feat. Rx and AppCompat #1
- Daily Droid feat. Rx and AppCompat #2
- Daily Droid feat. Rx and AppCompat #3
- Daily Droid feat. Rx and AppCompat #4
- Daily Droid feat. Rx and AppCompat #5
- Daily Droid feat. Rx and AppCompat #6
- Daily Droid feat. Rx and AppCompat #7
- Daily Droid feat. Rx and AppCompat #8
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
| class XmlEntity < Grape::Entity | |
| protected | |
| def self.key_for( attribute ) | |
| ( exposures[ attribute.to_sym ][ :as ] || name_for( attribute ) ).to_s.camelize | |
| end | |
| end |