This file contains 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
{ | |
"events": [{ | |
"id": 284792834, | |
"type:": "Cuaderno principal", | |
"substage": "SUBSANA DEMANDA", | |
"description": "Descripción", | |
"event_date": "DATE", | |
"event_start": "DATE", | |
"event_end": "DATE", | |
"event_notification": "DATE", |
This file contains 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": 1736187, | |
"caseNumber": "AB12313", | |
"name": "Camilo vs Felipe", | |
"claimants": [{ | |
"name": "Camilo Baquero", | |
"nationalId": 1032440498 | |
}], | |
"defendants": [{ | |
"name": "Felipe Rodriguez", |
This file contains 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
{ | |
"routes": [{ | |
"id": 133123213, | |
"name": "Ruta 1", | |
"tribunals": [{ | |
"name": "Juzgado 1", | |
"address": "Calle 1 - 23", | |
"processes": [{ | |
"id": 1736187, | |
"caseNumber": "AB12313", |
This file contains 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
/** | |
* Adapted from anorth at https://gist.github.com/anorth/9845602. | |
* by cami7ord on Sept 20 - 2017. | |
*/ | |
import android.content.Context; | |
import android.util.AttributeSet; | |
import android.util.Log; | |
import android.view.MotionEvent; | |
import android.view.ScaleGestureDetector; |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Test</title> | |
<style type="text/css"> | |
@media only screen and (max-width:480px) { | |
img { | |
display:block; | |
float:none; |
This file contains 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 void parseResponse(JSONObject response) { | |
try { | |
JSONArray categoriesArray = response.getJSONArray("categories"); | |
parseCategoriesArray(categoriesArray); | |
} catch (JSONException e) { | |
e.printStackTrace(); | |
} |
This file contains 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
<!-- PROGRESS INDICATOR --> | |
<RelativeLayout | |
android:id="@+id/live_status_wheel" | |
android:layout_marginTop="24dp" | |
android:layout_width="280dp" | |
android:layout_height="280dp" | |
android:layout_gravity="center_horizontal"> | |
<View |
This file contains 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.mercadoni.user.android; | |
public class MercadoniApplication extends Application { | |
@Override | |
public void onCreate() { | |
super.onCreate(); | |
initAdjust(); | |
} |
This file contains 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.mercadoni.user.android.managers; | |
import android.content.Context; | |
import android.os.Bundle; | |
import com.ad4screen.sdk.A4S; | |
import com.ad4screen.sdk.analytics.Cart; | |
import com.ad4screen.sdk.analytics.Item; | |
import com.ad4screen.sdk.analytics.Purchase; |
This file contains 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
/** | |
* Represents an asynchronous login/registration task used to authenticate | |
* the user. | |
*/ | |
public class UserLoginTask extends AsyncTask<Void, Void, Boolean> { | |
private Context mContext; | |
private final String mEmail; | |
private final String mPassword; |