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
{ | |
"errorMsg": null, | |
"statusCode": 0, | |
"data": [ | |
{ | |
"id":1, | |
"user": { | |
"name":"Nguyễn Hoài Ân", | |
"userProfileImage":"", | |
"age": 12, |
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
{ | |
"gradient": [ | |
{ | |
"title": "Roller Rink", | |
"colors": [ | |
"26284B#26284B", | |
"00545B#26284B", | |
"26284B#26284B", | |
"00545B#26284B", | |
"26284B#26284B", |
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
<!-- Profile career page --> | |
<string-array name="career_list_val"> | |
<item>Soldier</item> | |
<item>Student</item> | |
<item>Teacher</item> | |
<item>Office staff</item> | |
<item>Doctor</item> | |
<item>Worker</item> | |
<item>Pupil</item> | |
<item>Farmer</item> |
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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>SalesForceSample</groupId> | |
<artifactId>WSC-Enterprise</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<build> | |
<sourceDirectory>src</sourceDirectory> |
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
<div class="col-xs-12 "> | |
<!--Reading content--> | |
<h3>Reading content</h3> | |
<textarea class="form-control" rows="3"></textarea> | |
<!--Question content--> | |
<h3 class="text-left"> | |
Question content | |
</h3> |
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
@SuppressLint("InlinedApi") | |
public static void launchApp(final String packageName,final String activityName,final String key,final String value){ | |
if(packageName==null||activityName==null) return ; | |
UnityPlayer.currentActivity.runOnUiThread(new Runnable() { | |
@Override | |
public void run() { | |
try{ | |
final PackageManager pm = UnityPlayer.currentActivity.getPackageManager(); | |
Intent launchIntent = pm.getLaunchIntentForPackage(packageName); |
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> | |
<body> | |
<?php | |
/** | |
* The following function will send a GCM notification using curl. |