//INTIAL COMMIT

parents
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
<component name="ProjectCodeStyleConfiguration">
<code_scheme name="Project" version="173">
<Objective-C-extensions>
<file>
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Import" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Macro" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Typedef" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Enum" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Constant" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Global" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Struct" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="FunctionPredecl" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Function" />
</file>
<class>
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Property" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Synthesize" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="InitMethod" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="StaticMethod" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="InstanceMethod" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="DeallocMethod" />
</class>
<extensions>
<pair source="cpp" header="h" fileNamingConvention="NONE" />
<pair source="c" header="h" fileNamingConvention="NONE" />
</extensions>
</Objective-C-extensions>
</code_scheme>
</component>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<compositeConfiguration>
<compositeBuild compositeDefinitionSource="SCRIPT" />
</compositeConfiguration>
<option name="distributionType" value="DEFAULT_WRAPPED" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="resolveModulePerSourceSet" value="false" />
</GradleProjectSettings>
</option>
</component>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">
<option name="id" value="Android" />
</component>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RenderSettings">
<option name="showDecorations" value="true" />
</component>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RunConfigurationProducerService">
<option name="ignoredProducers">
<set>
<option value="org.jetbrains.plugins.gradle.execution.test.runner.AllInPackageGradleConfigurationProducer" />
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestClassGradleConfigurationProducer" />
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestMethodGradleConfigurationProducer" />
</set>
</option>
</component>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>
\ No newline at end of file
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.maxmoney.maxcddconsole"
minSdkVersion 19
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.squareup.okhttp3:okhttp:3.4.1'//HTTPS
implementation 'com.android.volley:volley:1.1.0'//VOLLEY
implementation 'de.hdodenhof:circleimageview:2.2.0' //CIRCLE IMAGEVIEw
implementation 'com.squareup.picasso:picasso:2.71828'//PICASSO
}
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
package com.maxmoney.maxcddconsole;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("com.maxmoney.maxcddconsole", appContext.getPackageName());
}
}
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.maxmoney.maxcddconsole">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@drawable/icon_maxmoney"
android:supportsRtl="true"
android:theme="@style/AppThemeNoActionBar">
<activity android:name=".Activity.DashboardActivity"></activity>
<activity android:name=".Activity.LoginActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".MainActivity"></activity>
</application>
</manifest>
\ No newline at end of file
package com.maxmoney.maxcddconsole.Activity;
import android.content.Intent;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
import com.android.volley.AuthFailureError;
import com.android.volley.RequestQueue;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.StringRequest;
import com.android.volley.toolbox.Volley;
import com.maxmoney.maxcddconsole.Common.StandardProgressDialog;
import com.maxmoney.maxcddconsole.Connectivity.BasedUrl;
import com.maxmoney.maxcddconsole.R;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.UnsupportedEncodingException;
import java.util.HashMap;
import java.util.Map;
import static com.android.volley.Request.Method.POST;
public class LoginActivity extends AppCompatActivity {
EditText editText_email,editText_password;
Button button_login;
StandardProgressDialog standardProgressDialog;
private static long back_pressed;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);
standardProgressDialog = new StandardProgressDialog(this.getWindow().getContext());
editText_email = findViewById(R.id.editText_email);
editText_password = findViewById(R.id.editText_password);
button_login = findViewById(R.id.button_login);
button_login.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if(editText_email.getText().toString().equals("")){
editText_email.setError("Please insert value");
}else if(editText_password.getText().toString().equals("")){
editText_password.setError("Please insert value");
}else{
standardProgressDialog.show();
login();
}
}
});
}
public void login(){
StringRequest stringRequest = new StringRequest(POST, BasedUrl.URL_STAGING +"sessions/current",
new com.android.volley.Response.Listener<String>() {
@Override
public void onResponse(String response) {
standardProgressDialog.dismiss();
try {
JSONObject obj = new JSONObject(response);
if(obj.has("session")){
if(!obj.getString("session").equals("")){
Intent next = new Intent(getApplicationContext(),DashboardActivity.class);
next.putExtra("session",obj.getString("session"));
startActivity(next);
}
}
} catch (JSONException e) {
e.printStackTrace();
}
}
},
new com.android.volley.Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
standardProgressDialog.dismiss();
parseVolleyError(error);
}
}) {
@Override
protected Map<String, String> getParams() throws AuthFailureError {
Map<String, String> params = new HashMap<String, String>();
params.put("username", editText_email.getText().toString());
params.put("password", editText_password.getText().toString());
return params;
}
};
RequestQueue requestQueue = Volley.newRequestQueue(getApplicationContext());
requestQueue.add(stringRequest);
}
public void parseVolleyError(VolleyError error) {
try {
String responseBody = new String(error.networkResponse.data, "utf-8");
JSONObject data = new JSONObject(responseBody);
if(data.has("message")){
Toast.makeText(getApplicationContext(), data.getString("message"),Toast.LENGTH_SHORT).show();
}else{
Toast.makeText(getApplicationContext(),"Login error",Toast.LENGTH_SHORT).show();
}
} catch (JSONException e) {
} catch (UnsupportedEncodingException errorr) {
}
}
@Override
public void onBackPressed() {
if (back_pressed + 2000 > System.currentTimeMillis()) moveTaskToBack(true);
else Toast.makeText(getBaseContext(), "Press once again to exit!", Toast.LENGTH_SHORT).show();
back_pressed = System.currentTimeMillis();
}
}
package com.maxmoney.maxcddconsole.Common;
import android.app.ProgressDialog;
import android.content.Context;
/**
* Created by iqbalbaharum on 23/01/2018.
*/
public class StandardProgressDialog extends ProgressDialog {
public StandardProgressDialog(Context context) {
super(context);
setMessage("Loading");
setProgressStyle(ProgressDialog.STYLE_SPINNER);
setCancelable(true);
}
}
package com.maxmoney.maxcddconsole.Connectivity;
public class BasedUrl {
public static String URL_STAGING = "https://api.maxmoney.com/v1/";
public static String API_STAGING_TOPAP_KEY = "340b5adfe435e23ea4534974c79ca1d5e1203d0a";
}
package com.maxmoney.maxcddconsole;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillType="evenOdd"
android:pathData="M32,64C32,64 38.39,52.99 44.13,50.95C51.37,48.37 70.14,49.57 70.14,49.57L108.26,87.69L108,109.01L75.97,107.97L32,64Z"
android:strokeWidth="1"
android:strokeColor="#00000000">
<aapt:attr name="android:fillColor">
<gradient
android:endX="78.5885"
android:endY="90.9159"
android:startX="48.7653"
android:startY="61.0927"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M66.94,46.02L66.94,46.02C72.44,50.07 76,56.61 76,64L32,64C32,56.61 35.56,50.11 40.98,46.06L36.18,41.19C35.45,40.45 35.45,39.3 36.18,38.56C36.91,37.81 38.05,37.81 38.78,38.56L44.25,44.05C47.18,42.57 50.48,41.71 54,41.71C57.48,41.71 60.78,42.57 63.68,44.05L69.11,38.56C69.84,37.81 70.98,37.81 71.71,38.56C72.44,39.3 72.44,40.45 71.71,41.19L66.94,46.02ZM62.94,56.92C64.08,56.92 65,56.01 65,54.88C65,53.76 64.08,52.85 62.94,52.85C61.8,52.85 60.88,53.76 60.88,54.88C60.88,56.01 61.8,56.92 62.94,56.92ZM45.06,56.92C46.2,56.92 47.13,56.01 47.13,54.88C47.13,53.76 46.2,52.85 45.06,52.85C43.92,52.85 43,53.76 43,54.88C43,56.01 43.92,56.92 45.06,56.92Z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>
<?xml version="1.0" encoding="utf-8" ?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:thickness="1dp"
android:shape="rectangle">
<corners android:radius="5dp" />
<gradient
android:startColor="#39B449"
android:endColor="#39B449"/>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8" ?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:thickness="1dp"
android:shape="rectangle">
<corners android:radius="5dp" />
<gradient
android:startColor="#FFFFFF"
android:endColor="#FFFFFF"/>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillColor="#008577"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
</vector>
<vector android:height="24dp" android:tint="#FFFFFF"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M12,17c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM18,8h-1L17,6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6h1.9c0,-1.71 1.39,-3.1 3.1,-3.1 1.71,0 3.1,1.39 3.1,3.1v2L6,8c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,10c0,-1.1 -0.9,-2 -2,-2zM18,20L6,20L6,10h12v10z"/>
</vector>
<vector android:height="505dp" android:viewportHeight="504.6"
android:viewportWidth="612" android:width="612dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#00A7E3" android:pathData="M527.6,504.6H85.7C42,503.3 1.9,458.6 4,421.1c0,-0.1 1,-11.4 1,-11.5l24.6,-266.7c0,-0.1 0,-0.2 0,-0.3c7,-43.2 47.1,-76.8 90.1,-84.1L489.6,4.8c102,-13.4 118.3,81.1 118.3,105.5v314C607.9,468.6 572,504.6 527.6,504.6z"/>
<path android:fillColor="#FCFDFF" android:pathData="M514.4,481.7H103.6c-0.8,0 -7,0 -7.8,0c-40.6,-1.9 -71.5,-36.6 -67.3,-77.7l23.1,-245.6c0.3,-2.8 0.6,-5.6 1.3,-8.3c8.5,-36.7 44.1,-65 82.1,-71.3l348.2,-49.4C579.4,17.8 585,106.4 585,121.2v291.3C585,450.4 553.6,481.7 514.4,481.7z"/>
<path android:fillColor="#2C5698" android:pathData="M502.7,465.9h-392c-0.8,0 -1.5,0 -2.3,0c-38.1,-1.2 -66.9,-35.2 -63.3,-73.1L66.7,167c0.3,-3.4 0.9,-6.8 1.8,-10.1c8.8,-33 41.7,-58.2 76.8,-63.9l327.9,-45.7c88.5,-11.2 95.9,69.2 95.9,85v269.6C569.1,437.2 539.4,465.9 502.7,465.9z"/>
<path android:fillColor="#FFFFFF" android:pathData="M261.3,302.2c-3.5,0 -5.8,-2.2 -5.8,-5.5l-6.5,-62.2l-24.7,59.4c-1.6,3.5 -3.7,4.2 -5.2,4.2h-6.4c-1.5,0 -3.6,-0.7 -5.1,-4.1L183,234.5l-6.5,62.2c-0.1,3.4 -2.3,5.5 -5.7,5.5h-6.8c-3.5,0 -5.8,-2.2 -5.8,-5.7v-0.2l10.4,-91.7c0,-1.6 0.8,-3.1 2,-4.1c1.1,-0.9 2.5,-1.4 3.9,-1.4h10.1c2.6,0 4.6,1.6 5.5,4.3l25.8,63.2l26.1,-63.1c0.4,-1.2 1,-2.3 1.9,-3c1,-0.9 2.2,-1.3 3.5,-1.3h10.4c2.2,0 3.5,1 4.2,1.8c0.9,1 1.4,2.3 1.5,3.7l10.4,91.7v0.2c0,3.5 -2.2,5.7 -5.7,5.7H261.3z"/>
<path android:fillColor="#FFFFFF" android:pathData="M331.5,303.5c-4.1,0 -8.2,-0.6 -12.1,-1.6c-3.9,-1.1 -7.6,-2.7 -10.9,-4.7c-3.4,-2 -6.5,-4.4 -9.3,-7.2c-2.8,-2.8 -5.2,-5.9 -7.2,-9.3c-2,-3.4 -3.6,-7.1 -4.7,-11c-1.1,-3.9 -1.6,-8 -1.6,-12.1s0.6,-8.3 1.6,-12.1c1.1,-3.9 2.7,-7.6 4.7,-10.9c2,-3.4 4.4,-6.5 7.2,-9.3c2.8,-2.8 5.9,-5.2 9.3,-7.2c3.4,-2 7.1,-3.6 10.9,-4.6c3.9,-1.1 7.9,-1.6 12.1,-1.6c6.2,0 12,1.2 17.3,3.6c3.3,1.5 6.3,3.3 9.2,5.4v-1.7c0,-3.5 2.2,-5.7 5.7,-5.7h6.8c3.6,0 5.9,2.2 5.9,5.7v77.6c0,1.7 -0.6,3.1 -1.8,4.2c-1.1,1 -2.5,1.5 -4,1.5h-6.8c-1.7,0 -3.2,-0.6 -4.2,-1.7c-1,-1.1 -1.6,-2.5 -1.6,-4v-1.9c-2.8,2.1 -5.9,4 -9.2,5.4C343.5,302.3 337.7,303.5 331.5,303.5zM331.5,229.6c-3.7,0 -7.2,0.8 -10.4,2.2c-3.3,1.5 -6.2,3.6 -8.6,6.1c-2.4,2.5 -4.4,5.5 -5.8,8.9c-1.4,3.4 -2.1,7 -2.1,10.7c0,3.7 0.7,7.3 2.1,10.7c1.4,3.4 3.4,6.5 5.8,9.1c2.4,2.6 5.3,4.7 8.6,6.2c3.2,1.5 6.7,2.3 10.4,2.3c3.7,0 7.2,-0.8 10.4,-2.3c3.3,-1.5 6.2,-3.6 8.7,-6.2c2.5,-2.6 4.4,-5.7 5.9,-9.1c1.4,-3.4 2.1,-7 2.1,-10.7c0,-3.7 -0.7,-7.3 -2.1,-10.7c-1.4,-3.4 -3.4,-6.4 -5.8,-8.9c-2.4,-2.5 -5.4,-4.6 -8.7,-6.1C338.7,230.3 335.2,229.6 331.5,229.6z"/>
<path android:fillColor="#FFFFFF" android:pathData="M452.2,302.2c-1.4,0 -2.7,-0.4 -3.8,-1.1c-0.8,-0.6 -1.6,-1.4 -2.4,-2.4l-0.1,-0.2l-18.4,-28.2l-18.4,28.3l-0.1,0.1c-0.8,1 -1.6,1.8 -2.4,2.4c-1.1,0.8 -2.3,1.1 -3.8,1.1h-9.6c-3.5,0 -4.4,-2 -4.6,-2.9c-0.3,-1.3 0,-2.7 1,-4.3l27.1,-39.3c-2.3,-3.4 -4.4,-6.4 -6.3,-9.2c-2.1,-3.1 -4.2,-6.1 -6.1,-8.8c-1.9,-2.8 -9.5,-13.6 -11.6,-16.7c-0.6,-0.9 -2.4,-3.6 -0.8,-5.9c1.2,-1.7 3.3,-1.9 4.8,-1.9h8.5c0.7,0 1.4,0.1 2,0.2c0.8,0.2 1.5,0.5 2.1,1c0.5,0.4 1,0.8 1.5,1.4l1.2,1.5l15.4,23.7l15.4,-23.7l1.2,-1.5c0.4,-0.5 0.9,-1 1.5,-1.4c0.6,-0.5 1.3,-0.8 2.1,-1c0.6,-0.1 1.3,-0.2 2,-0.2h8.5c1.5,0 3.6,0.2 4.8,1.9c1.6,2.3 -0.2,5 -0.8,5.9c-2.2,3.1 -4.2,6 -6,8.6c-1.8,2.6 -3.7,5.4 -5.6,8.1c-1.9,2.7 -3.9,5.7 -6.1,8.8c-1.9,2.7 -3.9,5.8 -6.3,9.2l27,39.2c1.1,1.6 1.4,3.1 1.1,4.4c-0.2,0.9 -1.1,2.9 -4.6,2.9H452.2z"/>
<path android:fillColor="#FFFFFF" android:pathData="M177.9,416c-3.3,0 -5.5,-2.1 -5.6,-5.3l-5.9,-56.4L144,408.1c-1.5,3.3 -3.6,4 -5,4h-5.9c-1.4,0 -3.4,-0.7 -4.9,-3.9L106,354.3l-5.9,56.3c-0.1,3.2 -2.2,5.3 -5.5,5.3h-6.3c-3.4,0 -5.6,-2.2 -5.6,-5.5v-0.2l9.5,-84.3c0,-1.6 0.7,-3 2,-3.9c1.1,-0.9 2.4,-1.3 3.8,-1.3h9.3c2.5,0 4.4,1.5 5.3,4.1l23.6,57.6l23.8,-57.6c0.4,-1.2 1,-2.1 1.8,-2.9c0.9,-0.8 2.1,-1.3 3.3,-1.3h9.6c2.1,0 3.4,0.9 4.1,1.7c0.9,1 1.4,2.2 1.4,3.6l9.5,84.3v0.2c0,3.3 -2.2,5.5 -5.5,5.5H177.9z"/>
<path android:fillColor="#FFFFFF" android:pathData="M240.3,417.3c-3.8,0 -7.6,-0.5 -11.2,-1.5c-3.6,-1 -7,-2.5 -10.1,-4.3c-3.1,-1.8 -6,-4.1 -8.6,-6.7c-2.6,-2.6 -4.8,-5.5 -6.7,-8.6c-1.8,-3.1 -3.3,-6.5 -4.3,-10.1c-1,-3.6 -1.6,-7.4 -1.6,-11.3c0,-5.8 1.1,-11.4 3.4,-16.5c2.2,-5.1 5.3,-9.7 9.2,-13.5c3.8,-3.9 8.4,-6.9 13.5,-9.2c5.1,-2.2 10.7,-3.4 16.4,-3.4c3.8,0 7.6,0.5 11.2,1.5c3.6,1 7,2.5 10.1,4.3c3.1,1.9 6,4.1 8.6,6.7c2.6,2.6 4.8,5.5 6.7,8.6c1.9,3.1 3.3,6.6 4.3,10.1c1,3.6 1.5,7.4 1.5,11.2c0,3.9 -0.5,7.6 -1.5,11.2c-1,3.6 -2.5,7 -4.3,10.1c-1.9,3.1 -4.1,6 -6.7,8.6c-2.6,2.6 -5.5,4.8 -8.6,6.7c-3.1,1.8 -6.5,3.3 -10.1,4.3C247.9,416.8 244.2,417.3 240.3,417.3zM240.3,349.1c-3.4,0 -6.6,0.7 -9.5,2.1c-3,1.4 -5.7,3.3 -7.9,5.7c-2.2,2.4 -4.1,5.2 -5.4,8.3c-1.3,3.1 -2,6.4 -2,9.7c0,3.4 0.7,6.7 1.9,9.8c1.3,3.1 3.1,5.8 5.3,8.1c2.2,2.3 4.9,4.2 7.9,5.6c2.9,1.4 6.2,2 9.6,2c3.4,0 6.5,-0.7 9.5,-2c3,-1.4 5.6,-3.2 7.8,-5.5c2.2,-2.3 4,-5 5.3,-8.1c1.3,-3.1 1.9,-6.3 1.9,-9.8c0,-3.4 -0.6,-6.6 -1.9,-9.7c-1.3,-3.1 -3.1,-5.9 -5.3,-8.3c-2.2,-2.4 -4.9,-4.3 -7.8,-5.7C246.8,349.8 243.7,349.1 240.3,349.1z"/>
<path android:fillColor="#FFFFFF" android:pathData="M353.5,416c-0.9,0 -3.7,0 -5.2,-2.1c-0.8,-1.1 -1.1,-2.6 -1.1,-4.6V368c0,-2.2 -0.3,-4.4 -0.9,-6.7c-0.6,-2.2 -1.5,-4.1 -2.8,-5.9c-1.2,-1.7 -2.9,-3.1 -5,-4.2c-2.1,-1.1 -4.7,-1.6 -7.9,-1.6c-2,0 -4.1,0.4 -6.2,1.1c-2.1,0.7 -4.1,1.8 -5.8,3.2c-1.7,1.4 -3.1,3.1 -4.3,5.1c-1.1,1.9 -1.6,4.2 -1.6,6.8v44.6c0,3.3 -2.2,5.5 -5.5,5.5h-6.2c-3.4,0 -5.7,-2.2 -5.7,-5.5v-71.3c0,-1.6 0.6,-3 1.7,-4c1,-1 2.4,-1.5 3.8,-1.5h6.3c1.6,0 3,0.6 4.1,1.7c1,1 1.5,2.4 1.5,3.8v0.4c1.3,-1.1 2.7,-2.2 4.2,-3.1c1.9,-1.2 4.1,-2.2 6.5,-2.9c2.4,-0.7 5.1,-1.1 8,-1.1c5.3,0 10.1,0.9 14.3,2.8c4.1,1.9 7.7,4.5 10.5,7.7c2.8,3.2 4.9,7.1 6.3,11.4c1.4,4.3 2.1,8.9 2.1,13.7v41c0,2.2 -0.6,3.9 -1.9,5.1c-1.2,1.2 -2.8,1.8 -4.7,1.8H353.5z"/>
<path android:fillColor="#FFFFFF" android:pathData="M418.4,417.3c-3.8,0 -7.6,-0.5 -11.2,-1.5c-3.6,-1 -7,-2.5 -10.1,-4.3c-3.1,-1.9 -6.1,-4.1 -8.6,-6.7c-2.6,-2.6 -4.9,-5.4 -6.7,-8.6c-1.9,-3.1 -3.4,-6.5 -4.4,-10.1c-1,-3.6 -1.6,-7.4 -1.6,-11.3c0,-3.8 0.5,-7.6 1.5,-11.2c1,-3.6 2.4,-7 4.1,-10.1c1.8,-3.1 4,-6 6.5,-8.6c2.5,-2.6 5.4,-4.8 8.6,-6.7c3.2,-1.8 6.6,-3.3 10.3,-4.3c3.7,-1 7.6,-1.5 11.6,-1.5c3.2,0 6.5,0.4 9.6,1.1c3.2,0.7 6.2,1.8 9.2,3.2c2.9,1.4 5.7,3.1 8.3,5.2c2.6,2.1 4.9,4.5 6.9,7.1c2.8,3.7 4.9,8 6.2,12.8c1.3,4.7 1.9,10.1 1.9,16.1c0,3.4 -2.2,5.6 -5.5,5.6H395c0.6,1.6 1.3,3.2 2.2,4.6c1.5,2.5 3.4,4.7 5.6,6.5c2.1,1.8 4.6,3.3 7.2,4.3c2.6,1 5.3,1.5 8.1,1.5c2,0 3.8,-0.2 5.4,-0.6c1.6,-0.4 3,-0.9 4.3,-1.5c1.3,-0.6 2.5,-1.4 3.6,-2.2c1.2,-0.8 2.3,-1.7 3.4,-2.6l0.1,-0.1c0.5,-0.4 1,-0.8 1.5,-1.1c0.9,-0.6 1.9,-0.9 2.9,-0.9c1,0 2.6,0.4 4,2.2l2,2.7c0.5,0.7 0.9,1.2 1.2,1.5c0.4,0.5 0.6,0.8 0.7,1c0.3,0.4 0.6,0.9 0.8,1.3c0.3,0.6 0.4,1.3 0.4,2.1c0,1 -0.3,2 -1,3c-0.5,0.7 -1.3,1.5 -2.3,2.4c-1.8,1.5 -3.8,2.8 -5.7,3.9c-2,1.2 -4.1,2.2 -6.3,3.1c-2.2,0.9 -4.5,1.5 -7,2C423.7,417.1 421.1,417.3 418.4,417.3zM442.4,366.1c-0.5,-1.7 -1.2,-3.3 -2.1,-4.8c-1.4,-2.4 -3.3,-4.5 -5.4,-6.2c-2.2,-1.7 -4.7,-3.1 -7.5,-4c-2.8,-1 -5.7,-1.4 -8.6,-1.4c-2.4,0 -4.7,0.3 -7,0.9c-2.3,0.6 -4.5,1.6 -6.5,2.8c-2.7,1.8 -5.1,4.2 -7.1,7c-1.3,1.8 -2.3,3.8 -3.1,5.8H442.4z"/>
<path android:fillColor="#FFFFFF" android:pathData="M491,439.2c-4.2,0 -5.7,-2.7 -5.7,-5.1c0,-0.5 0.1,-1.1 0.2,-1.6l0,-0.1v-0.3l9.8,-23.8l-27.6,-67.1c-0.1,-0.3 -0.2,-0.6 -0.2,-0.8c-0.1,-0.6 -0.2,-1.2 -0.2,-1.9c0,-2.3 1.5,-4.9 5.6,-4.9h6.3c1.4,0 2.7,0.4 3.7,1.2c0.9,0.7 1.6,1.7 2.1,2.8c0.8,2.1 1.8,4.6 3,7.7c1.2,3.1 2.5,6.4 3.9,10s2.9,7.3 4.4,11.1c1.5,3.8 3,7.5 4.3,10.9c1.4,3.5 3.9,9.6 3.9,9.6c0,-0.1 0,-0.1 0.1,-0.2c1.1,-2.8 2.4,-6 3.7,-9.5c1.3,-3.5 2.8,-7.1 4.3,-11c1.5,-3.8 2.9,-7.5 4.3,-11.1c1.4,-3.6 2.7,-6.9 3.9,-10c1.2,-3.1 2.2,-5.6 2.9,-7.7c0.5,-1.2 1.2,-2.2 2.1,-2.9c1,-0.8 2.3,-1.2 3.7,-1.2h6.7c4,0 5.5,2.7 5.5,4.9c0,0.4 0,0.7 -0.1,1.1c-0.1,0.3 -0.2,0.6 -0.3,0.9l-0.1,0.3l-0.1,0.4l-14.2,34.9l-24.1,59.2l0,0c-1,2.5 -3.1,3.9 -5.8,3.9H491z"/>
</vector>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorBackground"
android:orientation="vertical"
tools:context=".Activity.DashboardActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="90dp"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:orientation="horizontal">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/profile_image"
android:layout_width="100dp"
android:layout_height="50dp"
android:src="@drawable/icon_profile"
app:civ_border_color="@color/colorBackground"
app:civ_border_width="1dp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/textView8"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="MAX CONSOLE"
android:textColor="@android:color/white" />
<TextView
android:id="@+id/textView_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="maxcdd03@maxmoney.com / Maxcddofficer"
android:textColor="@android:color/white" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:id="@+id/linear_balance"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="15dp"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
android:orientation="horizontal">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Top Up Balance : "
android:textColor="@android:color/white"
android:textSize="20sp"
android:textStyle="bold" />
<TextView
android:id="@+id/textView_balance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="0"
android:textColor="@android:color/white"
android:textSize="18sp" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/darker_gray"
android:orientation="vertical">
</LinearLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:id="@+id/button_approve"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:background="@drawable/custom_button_login_activity"
android:text="APPROVE CUSTOMER"
android:textColor="@android:color/white" />
<Button
android:id="@+id/button_registration"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:background="@drawable/custom_button_login_activity"
android:text="REGISTRATION CUSTOMER"
android:textColor="@android:color/white" />
<Button
android:id="@+id/button_cdd"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:background="@drawable/custom_button_login_activity"
android:text="CDD"
android:textColor="@android:color/white" />
<Button
android:id="@+id/button_userSearch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:background="@drawable/custom_button_login_activity"
android:text="USER SEARCH"
android:textColor="@android:color/white" />
<Button
android:id="@+id/button_topap"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:background="@drawable/custom_button_login_activity"
android:text="TOP UP"
android:textColor="@android:color/white" />
<Button
android:id="@+id/button_logout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:background="@android:color/holo_orange_light"
android:text="LOGOUT"
android:textColor="@android:color/white" />
</LinearLayout>
</ScrollView>
</LinearLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorBackground"
android:orientation="vertical"
tools:context=".Activity.LoginActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="2"
android:orientation="vertical">
<ImageView
android:id="@+id/imageView_logo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="40dp"
app:srcCompat="@drawable/icon_maxmoney"
tools:ignore="VectorDrawableCompat" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Max Money Console"
android:textColor="@android:color/white"
android:textSize="20sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="50dp"
android:orientation="vertical">
<EditText
android:id="@+id/editText_email"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginLeft="30dp"
android:layout_marginTop="30dp"
android:layout_marginRight="30dp"
android:background="@drawable/custom_edit_text_login_activity"
android:hint="Email"
android:inputType="textEmailAddress"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:textColor="@android:color/black" />
<EditText
android:id="@+id/editText_password"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_margin="30dp"
android:background="@drawable/custom_edit_text_login_activity"
android:hint="Password"
android:inputType="textWebPassword"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:textColor="@android:color/black" />
<Button
android:id="@+id/button_login"
android:layout_width="match_parent"
android:layout_height="55dp"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
android:background="@drawable/custom_button_login_activity"
android:text="LOGIN"
android:textColor="@android:color/white" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#008577</color>
<color name="colorPrimaryDark">#00574B</color>
<color name="colorAccent">#D81B60</color>
<color name="colorBackground">#2C84C4</color>
<color name="colorButtonHijau">#39B449</color>
</resources>
<resources>
<string name="app_name">Max Cdd Console</string>
</resources>
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppThemeNoActionBar" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorBackground</item>
<item name="colorPrimaryDark">@color/colorBackground</item>
<item name="colorAccent">@android:color/black</item>
</style>
</resources>
package com.maxmoney.maxcddconsole;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
}
\ No newline at end of file
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx1536m
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
#Fri Mar 29 21:31:15 MYT 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip
#!/usr/bin/env sh
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null
APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS=""
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
warn () {
echo "$*"
}
die () {
echo
echo "$*"
echo
exit 1
}
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "`uname`" in
CYGWIN* )
cygwin=true
;;
Darwin* )
darwin=true
;;
MINGW* )
msys=true
;;
NONSTOP* )
nonstop=true
;;
esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java"
else
JAVACMD="$JAVA_HOME/bin/java"
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD="java"
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ] ; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
MAX_FD="$MAX_FD_LIMIT"
fi
ulimit -n $MAX_FD
if [ $? -ne 0 ] ; then
warn "Could not set maximum file descriptor limit: $MAX_FD"
fi
else
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
fi
fi
# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi
# For Cygwin, switch paths to Windows format before running java
if $cygwin ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
JAVACMD=`cygpath --unix "$JAVACMD"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
SEP=""
for dir in $ROOTDIRSRAW ; do
ROOTDIRS="$ROOTDIRS$SEP$dir"
SEP="|"
done
OURCYGPATTERN="(^($ROOTDIRS))"
# Add a user-defined pattern to the cygpath arguments
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
i=0
for arg in "$@" ; do
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
else
eval `echo args$i`="\"$arg\""
fi
i=$((i+1))
done
case $i in
(0) set -- ;;
(1) set -- "$args0" ;;
(2) set -- "$args0" "$args1" ;;
(3) set -- "$args0" "$args1" "$args2" ;;
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
esac
fi
# Escape application args
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
APP_ARGS=$(save "$@")
# Collect all arguments for the java command, following the shell quoting and substitution rules
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
cd "$(dirname "$0")"
fi
exec "$JAVACMD" "$@"
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windows variants
if not "%OS%" == "Windows_NT" goto win9xME_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
include ':app'
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment