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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Stratipy Test Client</title> | |
| <script src="https://unpkg.com/@solana/web3.js@1/lib/index.iife.min.js"></script> | |
| <style> | |
| * { box-sizing: border-box; margin: 0; padding: 0; } | |
| body { |
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
| { | |
| "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 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
| { | |
| "id": 1736187, | |
| "caseNumber": "AB12313", | |
| "name": "Camilo vs Felipe", | |
| "claimants": [{ | |
| "name": "Camilo Baquero", | |
| "nationalId": 1032440498 | |
| }], | |
| "defendants": [{ | |
| "name": "Felipe Rodriguez", |
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
| { | |
| "routes": [{ | |
| "id": 133123213, | |
| "name": "Ruta 1", | |
| "tribunals": [{ | |
| "name": "Juzgado 1", | |
| "address": "Calle 1 - 23", | |
| "processes": [{ | |
| "id": 1736187, | |
| "caseNumber": "AB12313", |
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
| /** | |
| * 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 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
| <!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 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 void parseResponse(JSONObject response) { | |
| try { | |
| JSONArray categoriesArray = response.getJSONArray("categories"); | |
| parseCategoriesArray(categoriesArray); | |
| } catch (JSONException e) { | |
| e.printStackTrace(); | |
| } |
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
| <!-- 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 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.mercadoni.user.android; | |
| public class MercadoniApplication extends Application { | |
| @Override | |
| public void onCreate() { | |
| super.onCreate(); | |
| initAdjust(); | |
| } |
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.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; |
NewerOlder