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
| // on error the server sends JSON | |
| /* | |
| { "error": { "data": { "message":"A thing went wrong" } } } | |
| */ | |
| // create model classes.. | |
| public class ErrorResponse { | |
| Error error; | |
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
| #!/bin/bash | |
| ########## | |
| # README # | |
| ########## | |
| # Make sure you've got the CLI tool `jq` installed | |
| # ↳ http://stedolan.github.io/jq/ | |
| # (if you've got homebrew on your Mac just do → `brew install jq`) |
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
| -dontwarn org.jboss.netty.logging.** | |
| -dontwarn org.osgi.** | |
| -dontwarn javax.servlet.** | |
| -dontwarn org.jboss.netty.channel.socket.http.** | |
| ## Unsafe is there at runtime | |
| -dontwarn sun.misc.Unsafe | |
| -keep class sun.misc.Unsafe{ | |
| *; | |
| } |
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
| LOCAL_PATH:= $(call my-dir) | |
| include $(CLEAR_VARS) | |
| LOCAL_SRC_FILES:= \ | |
| gps_test.cpp | |
| LOCAL_SHARED_LIBRARIES := \ | |
| libcutils libhardware | |
| LOCAL_MODULE:= test-gps |
NewerOlder