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"?> | |
| <resources> | |
| <!-- TextView Empty Base--> | |
| <style name="TextViewBase" parent="android:TextAppearance.Holo.Widget.TextView"/> | |
| <!-- ActionBar Title --> | |
| <style name="CustomActionBarTitleBase" parent="TextAppearance.AppCompat.Widget.ActionBar.Title"/> | |
| <!-- Text Views Default Base --> |
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
| /** | |
| * Template to put the annoying !TextUtils.isEmpty(String) | |
| * | |
| * Declaration: Java - Expression | |
| * Variables: | |
| * $STRING$ expresion: completeSmart() | |
| * | |
| * Follow this instruction to add it to Android Studio | |
| * http://dmytrodanylyk.com/pages/blog/templates.html | |
| */ |
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
| /** | |
| * Template to put the annoying timber.d ... | |
| * | |
| * Declaration: Java - Expression | |
| * Variables: | |
| * $TYPE$ expresion empty, default value "" | |
| * | |
| * Follow this instruction to add it to Android Studio | |
| * http://dmytrodanylyk.com/pages/blog/templates.html | |
| */ |
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
| /** | |
| * Upclose Otto library {@link com.squareup.otto.Bus} | |
| * | |
| * | |
| * Created by Marcos Trujillo (U・x・U) on 28/07/14. | |
| */ | |
| public class OttoBus extends Bus { | |
| private final Handler mainThread = new Handler(Looper.getMainLooper()); |
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
| Download the following ZIPs: | |
| ARM Translation Installer v1.1 (http://www.mirrorcreator.com/files/0ZIO8PME/Genymotion-ARM-Translation_v1.1.zip_links) | |
| Download the correct GApps for your Android version: | |
| Google Apps for Android 5.0 (https://www.androidfilehost.com/?fid=95784891001614559 - gapps-lp-20141109-signed.zip) | |
| Google Apps for Android 4.4.4 (https://www.androidfilehost.com/?fid=23501681358544845 - gapps-kk-20140606-signed.zip) | |
| Google Apps for Android 4.3 (https://www.androidfilehost.com/?fid=23060877490000124 - gapps-jb-20130813-signed.zip) | |
| Google Apps for Android 4.2 (https://www.androidfilehost.com/?fid=23060877490000128 - gapps-jb-20130812-signed.zip) | |
| Google Apps for Android 4.1 (https://www.androidfilehost.com/?fid=22979706399755082 - gapps-jb-20121011-signed.zip) |
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 com.fewlaps.android.quitnow.base.customview; | |
| import android.os.Handler; | |
| import android.view.View; | |
| /** | |
| * A simple way to call the common new Handler().postDelayed(..., time); | |
| * to show the Ripple animation completely and then run a Runnable. This class | |
| * have to be used like a {@link android.view.View.OnClickListener} | |
| * |
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 com.aracem.utils.animation; | |
| import android.animation.Animator; | |
| import android.animation.AnimatorListenerAdapter; | |
| import android.animation.Keyframe; | |
| import android.animation.ObjectAnimator; | |
| import android.animation.PropertyValuesHolder; | |
| import android.annotation.TargetApi; | |
| import android.content.Context; | |
| import android.os.Build; |
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"?> | |
| <!-- | |
| ~ Copyright (c) 2015 Upclose.me All rights reserved. | |
| ~ | |
| ~ 0000000 xx | |
| ~ 00000000 xxxx | |
| ~ 0000000000 xxl | |
| ~ 00000000000000 | |
| ~ 000000000000 | |
| ~ 00000000 |
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/panavtec/Documents/android-sdk-macosx/tools/proguard/proguard-android.txt | |
| # You can edit the include path and order by changing the ProGuard | |
| # include property in project.properties. | |
| # | |
| # 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
| package com.aracem.sample.tracking; | |
| import android.app.Activity; | |
| import android.app.Application; | |
| import android.content.Context; | |
| import android.support.annotation.NonNull; | |
| import android.support.annotation.Nullable; | |
| import com.aracem.sample.tracking.trackingservice.MixpanelTrackingHelper; | |
| import com.aracem.sample.tracking.trackingservice.GoogleAnalyticsTrackingHelper; |