Skip to content

Commit

Permalink
Lint fixes and suppression
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Diaz committed Sep 26, 2016
1 parent 51625bf commit ef2cad1
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 4 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,26 @@

Check pokemons stats before you catch them.

Libraries and tools included:

- Android's support libraries
- Reactive extensions: [RxJava](https://github.com/ReactiveX/RxJava), [RxAndroid](https://github.com/ReactiveX/RxAndroid), [RxBinding](https://github.com/JakeWharton/RxBinding) and [RxRelay](https://github.com/JakeWharton/RxRelay)
- Dependency injector: [Dagger 2](http://google.github.io/dagger/)
- Android's views binding: [Butterknife](https://github.com/JakeWharton/butterknife)
- Logging utility: [Timber](https://github.com/JakeWharton/timber)
- Generated immutable value classes: [AutoValue](https://github.com/google/auto/tree/master/value)
- [Xposed framework](https://github.com/rovo89/XposedBridge)
- [Protobuf](https://github.com/google/protobuf-gradle-plugin)

Don't forget to star this project ;D

## Requirements

- JDK 1.8
- [Android SDK](http://developer.android.com/sdk/index.html)
- Android N [(API 24) ](http://developer.android.com/tools/revisions/platforms.html)
- Latest Android SDK Tools and build tools

## Special thanks

Snorlax would not have been possible without:
Expand Down
3 changes: 2 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ android {
'AllowBackup',
'InvalidPackage',
'UnusedResources',
'GoogleAppIndexingWarning'
'GoogleAppIndexingWarning',
'IconLocation'
}
dexOptions {
dexInProcess true
Expand Down
8 changes: 6 additions & 2 deletions app/src/main/res/layout/about_dialog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearance"
android:textColor="@color/white"
android:textIsSelectable="true"
/>

<TextView
Expand All @@ -30,24 +31,27 @@
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearance"
android:textColor="@color/white"
android:textIsSelectable="true"
/>

<TextView
android:id="@+id/github"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:textAppearance="?android:attr/textAppearance"
android:textColor="@color/white"
android:layout_marginTop="8dp"
android:textIsSelectable="true"
/>

<TextView
android:id="@+id/thanks"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:textAppearance="?android:attr/textAppearance"
android:textColor="@color/white"
android:layout_marginTop="8dp"
android:textIsSelectable="true"
/>

</LinearLayout>
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<string name="about_version">Version %1$s</string>
<string name="about_author">By igoticecream (igoticecream@gmail.com)</string>
<string name="about_github">This project is open source under the Apache 2.0 license. If you like this module, an star to this repo on my Github will help me a lot.</string>
<string name="about_thanks">Special thanks for the github\'s users \'chuparCh0pper\' for his PoGoIV_xposed project and \'ELynx\' for the method used to MITM PokemonGo communication.</string>
<string name="about_thanks">Special thanks for the github users chuparCh0pper for his PoGoIV_xposed project and ELynx for the method used to MITM PokemonGo communication.</string>
<string name="about_repository">https://github.com/igoticecream/Snorlax</string>

<string name="error_readable">Cannot make preferences world readable</string>
Expand Down

0 comments on commit ef2cad1

Please sign in to comment.