7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/materialwidget/src/androidTest/java/com/kifile/materialwidget/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2015 kifile
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | */
16 |
17 | package com.kifile.materialwidget;
18 |
19 | import android.app.Application;
20 | import android.test.ApplicationTestCase;
21 |
22 | /**
23 | * Testing Fundamentals
24 | */
25 | public class ApplicationTest extends ApplicationTestCase {
26 | public ApplicationTest() {
27 | super(Application.class);
28 | }
29 | }
--------------------------------------------------------------------------------
/app/src/main/res/layout/sample_material_text_view.xml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
14 |
15 |
22 |
23 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/materialwidget/src/main/java/com/kifile/materialwidget/ColorUtils.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2015 kifile
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | */
16 |
17 | package com.kifile.materialwidget;
18 |
19 | import android.graphics.Color;
20 |
21 | /**
22 | * Created by kifile on 15-1-4.
23 | */
24 | public class ColorUtils {
25 |
26 | /**
27 | * Get the value of color with specified alpha.
28 | *
29 | * @param color
30 | * @param alpha between 0 to 255.
31 | * @return Return the color with specified alpha.
32 | */
33 | public static int getColorAtAlpha(int color, int alpha) {
34 | if (alpha < 0 || alpha > 255) {
35 | throw new IllegalArgumentException("The alpha should be 0 - 255.");
36 | }
37 | return Color.argb(alpha, Color.red(color), Color.green(color), Color.blue(color));
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | #
2 | # Copyright 2015 kifile
3 | #
4 | # Licensed under the Apache License, Version 2.0 (the "License");
5 | # you may not use this file except in compliance with the License.
6 | # You may obtain a copy of the License at
7 | #
8 | # http://www.apache.org/licenses/LICENSE-2.0
9 | #
10 | # Unless required by applicable law or agreed to in writing, software
11 | # distributed under the License is distributed on an "AS IS" BASIS,
12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | # See the License for the specific language governing permissions and
14 | # limitations under the License.
15 | #
16 |
17 | # Project-wide Gradle settings.
18 |
19 | # IDE (e.g. Android Studio) users:
20 | # Gradle settings configured through the IDE *will override*
21 | # any settings specified in this file.
22 |
23 | # For more details on how to configure your build environment visit
24 | # http://www.gradle.org/docs/current/userguide/build_environment.html
25 |
26 | # Specifies the JVM arguments used for the daemon process.
27 | # The setting is particularly useful for tweaking memory settings.
28 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
29 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
30 |
31 | # When configured, Gradle will run in incubating parallel mode.
32 | # This option should only be used with decoupled projects. More details, visit
33 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
34 | # org.gradle.parallel=true
--------------------------------------------------------------------------------
/app/src/main/java/com/kifile/demo/materialtextview/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.kifile.demo.materialtextview;
2 |
3 | import android.app.Activity;
4 | import android.content.Intent;
5 | import android.os.Bundle;
6 | import android.view.Menu;
7 | import android.view.MenuItem;
8 | import android.view.View;
9 |
10 |
11 | public class MainActivity extends Activity implements View.OnClickListener {
12 |
13 | @Override
14 | protected void onCreate(Bundle savedInstanceState) {
15 | super.onCreate(savedInstanceState);
16 | setContentView(R.layout.sample_material_text_view);
17 | findViewById(R.id.material).setOnClickListener(this);
18 | findViewById(R.id.drawable).setOnClickListener(this);
19 | }
20 |
21 |
22 | @Override
23 | public boolean onCreateOptionsMenu(Menu menu) {
24 | // Inflate the menu; this adds items to the action bar if it is present.
25 | getMenuInflater().inflate(R.menu.menu_main, menu);
26 | return true;
27 | }
28 |
29 | @Override
30 | public boolean onOptionsItemSelected(MenuItem item) {
31 | // Handle action bar item clicks here. The action bar will
32 | // automatically handle clicks on the Home/Up button, so long
33 | // as you specify a parent activity in AndroidManifest.xml.
34 | int id = item.getItemId();
35 |
36 | //noinspection SimplifiableIfStatement
37 | if (id == R.id.action_settings) {
38 | return true;
39 | }
40 |
41 | return super.onOptionsItemSelected(item);
42 | }
43 |
44 | @Override
45 | public void onClick(View v) {
46 | startActivity(new Intent(this, MainActivity.class));
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/.idea/inspectionProfiles/Project_Default.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/gradlew.bat:
--------------------------------------------------------------------------------
1 | @if "%DEBUG%" == "" @echo off
2 | @rem ##########################################################################
3 | @rem
4 | @rem Gradle startup script for Windows
5 | @rem
6 | @rem ##########################################################################
7 |
8 | @rem Set local scope for the variables with windows NT shell
9 | if "%OS%"=="Windows_NT" setlocal
10 |
11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
12 | set DEFAULT_JVM_OPTS=
13 |
14 | set DIRNAME=%~dp0
15 | if "%DIRNAME%" == "" set DIRNAME=.
16 | set APP_BASE_NAME=%~n0
17 | set APP_HOME=%DIRNAME%
18 |
19 | @rem Find java.exe
20 | if defined JAVA_HOME goto findJavaFromJavaHome
21 |
22 | set JAVA_EXE=java.exe
23 | %JAVA_EXE% -version >NUL 2>&1
24 | if "%ERRORLEVEL%" == "0" goto init
25 |
26 | echo.
27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
28 | echo.
29 | echo Please set the JAVA_HOME variable in your environment to match the
30 | echo location of your Java installation.
31 |
32 | goto fail
33 |
34 | :findJavaFromJavaHome
35 | set JAVA_HOME=%JAVA_HOME:"=%
36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
37 |
38 | if exist "%JAVA_EXE%" goto init
39 |
40 | echo.
41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
42 | echo.
43 | echo Please set the JAVA_HOME variable in your environment to match the
44 | echo location of your Java installation.
45 |
46 | goto fail
47 |
48 | :init
49 | @rem Get command-line arguments, handling Windowz variants
50 |
51 | if not "%OS%" == "Windows_NT" goto win9xME_args
52 | if "%@eval[2+2]" == "4" goto 4NT_args
53 |
54 | :win9xME_args
55 | @rem Slurp the command line arguments.
56 | set CMD_LINE_ARGS=
57 | set _SKIP=2
58 |
59 | :win9xME_args_slurp
60 | if "x%~1" == "x" goto execute
61 |
62 | set CMD_LINE_ARGS=%*
63 | goto execute
64 |
65 | :4NT_args
66 | @rem Get arguments from the 4NT Shell from JP Software
67 | set CMD_LINE_ARGS=%$
68 |
69 | :execute
70 | @rem Setup the command line
71 |
72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73 |
74 | @rem Execute Gradle
75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
76 |
77 | :end
78 | @rem End local scope for the variables with windows NT shell
79 | if "%ERRORLEVEL%"=="0" goto mainEnd
80 |
81 | :fail
82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
83 | rem the _cmd.exe /c_ return code!
84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
85 | exit /b 1
86 |
87 | :mainEnd
88 | if "%OS%"=="Windows_NT" endlocal
89 |
90 | :omega
91 |
--------------------------------------------------------------------------------
/app/src/main/java/com/kifile/demo/materialtextview/MaterialImageView.java:
--------------------------------------------------------------------------------
1 | package com.kifile.demo.materialtextview;
2 |
3 | import android.content.Context;
4 | import android.content.res.TypedArray;
5 | import android.graphics.Canvas;
6 | import android.util.AttributeSet;
7 | import android.view.MotionEvent;
8 | import android.widget.ImageView;
9 |
10 | import com.kifile.materialwidget.MaterialBackgroundDetector;
11 |
12 | /**
13 | * Created by kifile on 15-1-4.
14 | */
15 | public class MaterialImageView extends ImageView implements MaterialBackgroundDetector.Callback {
16 | private MaterialBackgroundDetector mDetector;
17 |
18 | public MaterialImageView(Context context) {
19 | super(context);
20 | init(null, 0);
21 | }
22 |
23 | public MaterialImageView(Context context, AttributeSet attrs) {
24 | super(context, attrs);
25 | init(attrs, 0);
26 | }
27 |
28 | public MaterialImageView(Context context, AttributeSet attrs, int defStyle) {
29 | super(context, attrs, defStyle);
30 | init(attrs, defStyle);
31 | }
32 |
33 | private void init(AttributeSet attrs, int defStyle) {
34 | final TypedArray a = getContext().obtainStyledAttributes(
35 | attrs, com.kifile.materialwidget.R.styleable.MaterialTextView, defStyle, 0);
36 | int color = a.getColor(com.kifile.materialwidget.R.styleable.MaterialTextView_maskColor, MaterialBackgroundDetector.DEFAULT_COLOR);
37 | a.recycle();
38 | mDetector = new MaterialBackgroundDetector(getContext(), this, this, color);
39 | }
40 |
41 | @Override
42 | protected void onSizeChanged(int w, int h, int oldw, int oldh) {
43 | super.onSizeChanged(w, h, oldw, oldh);
44 | mDetector.onSizeChanged(w, h);
45 | }
46 |
47 | @Override
48 | public boolean onTouchEvent(MotionEvent event) {
49 | boolean superResult = super.onTouchEvent(event);
50 | return mDetector.onTouchEvent(event, superResult);
51 | }
52 |
53 | public void cancelAnimator() {
54 | mDetector.cancelAnimator();
55 | }
56 |
57 | @Override
58 | protected void onDraw(Canvas canvas) {
59 | super.onDraw(canvas);
60 | if (isInEditMode()) {
61 | return;
62 | }
63 | mDetector.draw(canvas);
64 | }
65 |
66 | @Override
67 | public boolean performClick() {
68 | return mDetector.handlePerformClick();
69 | }
70 |
71 | @Override
72 | public boolean performLongClick() {
73 | return mDetector.handlePerformLongClick();
74 | }
75 |
76 | @Override
77 | public void performClickAfterAnimation() {
78 | super.performClick();
79 | }
80 |
81 | @Override
82 | public void performLongClickAfterAnimation() {
83 | super.performLongClick();
84 | }
85 | }
86 |
--------------------------------------------------------------------------------
/materialwidget/build.gradle:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2015 kifile
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | */
16 |
17 | apply plugin: 'com.android.library'
18 | apply plugin: 'maven'
19 | apply plugin: 'signing'
20 |
21 | android {
22 | compileSdkVersion 21
23 | buildToolsVersion "21.1.2"
24 |
25 | defaultConfig {
26 | minSdkVersion 7
27 | targetSdkVersion 21
28 | versionCode 1
29 | versionName "1.0"
30 | }
31 | buildTypes {
32 | release {
33 | minifyEnabled false
34 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
35 | }
36 | }
37 | }
38 |
39 | dependencies {
40 | compile fileTree(include: ['*.jar'], dir: 'libs')
41 | compile 'com.nineoldandroids:library:2.4.0'
42 | }
43 |
44 | signing {
45 | sign configurations.archives
46 | }
47 |
48 | group = "com.kifile"
49 | archivesBaseName = "MaterialView"
50 | version = "1.0"
51 |
52 | uploadArchives {
53 | repositories {
54 | mavenDeployer {
55 | beforeDeployment {
56 | MavenDeployment deployment -> signing.signPom(deployment);
57 | }
58 |
59 | repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
60 | authentication(userName: ossrhUsername, password: ossrhPassword)
61 | }
62 |
63 | snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
64 | authentication(userName: ossrhUsername, password: ossrhPassword)
65 | }
66 |
67 | pom.project {
68 | name 'MaterialView'
69 | packaging 'aar'
70 | description 'This project is build to let the view looks like a material design widget when touched. '
71 | url 'https://github.com/Kifile/MaterialView'
72 |
73 | scm {
74 | connection 'scm:git:https://github.com/Kifile/MaterialView.git'
75 | developerConnection 'scm:git:https://github.com/Kifile/MaterialView.git'
76 | url 'https://github.com/Kifile/MaterialView.git'
77 | }
78 |
79 | licenses {
80 | license {
81 | name 'The Apache License, Version 2.0'
82 | url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
83 | }
84 | }
85 |
86 | developers {
87 | developer {
88 | id 'kifile'
89 | name 'Kifile Chou'
90 | email 'kifile@kifile.com'
91 | }
92 | }
93 | }
94 | }
95 | }
96 | }
--------------------------------------------------------------------------------
/app/src/main/java/com/kifile/demo/materialtextview/MaterialTextView.java:
--------------------------------------------------------------------------------
1 | package com.kifile.demo.materialtextview;
2 |
3 | import android.content.Context;
4 | import android.content.res.TypedArray;
5 | import android.graphics.Canvas;
6 | import android.util.AttributeSet;
7 | import android.view.MotionEvent;
8 | import android.widget.TextView;
9 |
10 | import com.kifile.materialwidget.MaterialBackgroundDetector;
11 |
12 |
13 | /**
14 | * The example for TextView.
15 | */
16 | public class MaterialTextView extends TextView implements MaterialBackgroundDetector.Callback {
17 | private MaterialBackgroundDetector mDetector;
18 |
19 | public MaterialTextView(Context context) {
20 | super(context);
21 | init(null, 0);
22 | }
23 |
24 | public MaterialTextView(Context context, AttributeSet attrs) {
25 | super(context, attrs);
26 | init(attrs, 0);
27 | }
28 |
29 | public MaterialTextView(Context context, AttributeSet attrs, int defStyle) {
30 | super(context, attrs, defStyle);
31 | init(attrs, defStyle);
32 | }
33 |
34 | private void init(AttributeSet attrs, int defStyle) {
35 | final TypedArray a = getContext().obtainStyledAttributes(
36 | attrs, com.kifile.materialwidget.R.styleable.MaterialTextView, defStyle, 0);
37 | int color = a.getColor(com.kifile.materialwidget.R.styleable.MaterialTextView_maskColor, MaterialBackgroundDetector.DEFAULT_COLOR);
38 | a.recycle();
39 | mDetector = new MaterialBackgroundDetector(getContext(), this, this, color);
40 | }
41 |
42 | @Override
43 | protected void onSizeChanged(int w, int h, int oldw, int oldh) {
44 | super.onSizeChanged(w, h, oldw, oldh);
45 | mDetector.onSizeChanged(w, h);
46 | }
47 |
48 | @Override
49 | public boolean onTouchEvent(MotionEvent event) {
50 | boolean superResult = super.onTouchEvent(event);
51 | return mDetector.onTouchEvent(event, superResult);
52 | }
53 |
54 | public void cancelAnimator() {
55 | mDetector.cancelAnimator();
56 | }
57 |
58 | @Override
59 | protected void onDraw(Canvas canvas) {
60 | super.onDraw(canvas);
61 | if (isInEditMode()) {
62 | return;
63 | }
64 | mDetector.draw(canvas);
65 | }
66 |
67 | /**
68 | * When the view performClick, we should ensure the background animation appears.
69 | * So we will handle the action in mDetector;
70 | *
71 | * @return
72 | */
73 | @Override
74 | public boolean performClick() {
75 | return mDetector.handlePerformClick();
76 | }
77 |
78 | /**
79 | * When the view performClick, we should ensure the background animation appears.
80 | * So we will handle the action in mDetector;
81 | *
82 | * @return
83 | */
84 | @Override
85 | public boolean performLongClick() {
86 | return mDetector.handlePerformLongClick();
87 | }
88 |
89 |
90 | @Override
91 | public void performClickAfterAnimation() {
92 | super.performClick();
93 | }
94 |
95 | @Override
96 | public void performLongClickAfterAnimation() {
97 | super.performLongClick();
98 | }
99 | }
100 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | #MaterialView
2 | ##Introduce
3 |
4 | [](https://gitter.im/kifile/MaterialView?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
5 | This project is build to let the view looks like a material design widget when touched.
6 |
7 | You can contact with we via email: ****
8 | ##Preview
9 | 
10 |
11 | 
12 | ##Dependences
13 | com.nineoldandroids:library:2.4.0
14 |
15 | ##Including In Your Project
16 | dependencies {
17 | compile 'com.kifile:MaterialView:1.0'
18 | }
19 |
20 | ##How To Use
21 | ###1.Extends your target view.
22 | public class MaterialImageView extends ImageView {
23 | public MaterialImageView(Context context) {
24 | super(context);
25 | init(null, 0);
26 | }
27 |
28 | public MaterialImageView(Context context, AttributeSet attrs) {
29 | super(context, attrs);
30 | init(attrs, 0);
31 | }
32 |
33 | public MaterialImageView(Context context, AttributeSet attrs, int defStyle) {
34 | super(context, attrs, defStyle);
35 | init(attrs, defStyle);
36 | }
37 | }
38 | ###2.Create a MaterialBackgroundDetector in your initial code.
39 | private MaterialBackgroundDetector mDetector;
40 |
41 | private void init(AttributeSet attrs, int defStyle) {
42 | final TypedArray a = getContext().obtainStyledAttributes(
43 | attrs, com.kifile.materialwidget.R.styleable.MaterialTextView, defStyle, 0);
44 | int color = a.getColor(com.kifile.materialwidget.R.styleable.MaterialTextView_maskColor, MaterialBackgroundDetector.DEFAULT_COLOR);
45 | a.recycle();
46 | mDetector = new MaterialBackgroundDetector(getContext(), this, null, color);
47 | }
48 | ###3.Handle the relative event in your code.
49 | @Override
50 | protected void onSizeChanged(int w, int h, int oldw, int oldh) {
51 | super.onSizeChanged(w, h, oldw, oldh);
52 | mDetector.onSizeChanged(w, h);
53 | }
54 |
55 | @Override
56 | public boolean onTouchEvent(MotionEvent event) {
57 | boolean superResult = super.onTouchEvent(event);
58 | return mDetector.onTouchEvent(event, superResult);
59 | }
60 |
61 | @Override
62 | protected void onDraw(Canvas canvas) {
63 | super.onDraw(canvas);
64 | if (isInEditMode()) {
65 | return;
66 | }
67 | mDetector.draw(canvas);
68 | }
69 | ###4.(Optional) Handle click event.
70 | Through the above code, you have realized the view. But there is still some little problems.
71 | When you click the view to jump to another activity, you may not see the whole mask animation.
72 |
73 | To resolve this problem, the detector handle the click event, and response the event after animation.
74 |
75 | You should add these codes to your view.
76 |
77 | In your initial code, you should transfer a Callback object in MaterialBackground constructor.
78 |
79 | mDetector = new MaterialBackgroundDetector(getContext(), this, this, color);
80 | The second this means this view implements a Callback interface.
81 | Then you shuould add these code:
82 |
83 | @Override
84 | public boolean performClick() {
85 | return mDetector.handlePerformClick();
86 | }
87 |
88 | @Override
89 | public boolean performLongClick() {
90 | return mDetector.handlePerformLongClick();
91 | }
92 |
93 | @Override
94 | public void performClickAfterAnimation() {
95 | super.performClick();
96 | }
97 |
98 | @Override
99 | public void performLongClickAfterAnimation() {
100 | super.performLongClick();
101 | }
102 |
103 | You can see the example view named MaterialTextView and MaterialImageView in the app module for more details.
104 |
105 | ##About proguard
106 | If you want to use proguard, you should add these code in your proguard file:
107 |
108 | -keep class com.kifile.materialwidget.MaterialBackgroundDetector {
109 | public void setRadius(...);
110 | public void setAlpha(...);
111 | }
112 |
113 | ##Developed By
114 | * Kifile Chou -
115 |
116 | ##Listense
117 | Copyright 2015 kifile
118 |
119 | Licensed under the Apache License, Version 2.0 (the "License");
120 | you may not use this file except in compliance with the License.
121 | You may obtain a copy of the License at
122 |
123 | http://www.apache.org/licenses/LICENSE-2.0
124 |
125 | Unless required by applicable law or agreed to in writing, software
126 | distributed under the License is distributed on an "AS IS" BASIS,
127 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
128 | See the License for the specific language governing permissions and
129 | limitations under the License.
--------------------------------------------------------------------------------
/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | ##############################################################################
4 | ##
5 | ## Gradle start up script for UN*X
6 | ##
7 | ##############################################################################
8 |
9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
10 | DEFAULT_JVM_OPTS=""
11 |
12 | APP_NAME="Gradle"
13 | APP_BASE_NAME=`basename "$0"`
14 |
15 | # Use the maximum available, or set MAX_FD != -1 to use that value.
16 | MAX_FD="maximum"
17 |
18 | warn ( ) {
19 | echo "$*"
20 | }
21 |
22 | die ( ) {
23 | echo
24 | echo "$*"
25 | echo
26 | exit 1
27 | }
28 |
29 | # OS specific support (must be 'true' or 'false').
30 | cygwin=false
31 | msys=false
32 | darwin=false
33 | case "`uname`" in
34 | CYGWIN* )
35 | cygwin=true
36 | ;;
37 | Darwin* )
38 | darwin=true
39 | ;;
40 | MINGW* )
41 | msys=true
42 | ;;
43 | esac
44 |
45 | # For Cygwin, ensure paths are in UNIX format before anything is touched.
46 | if $cygwin ; then
47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
48 | fi
49 |
50 | # Attempt to set APP_HOME
51 | # Resolve links: $0 may be a link
52 | PRG="$0"
53 | # Need this for relative symlinks.
54 | while [ -h "$PRG" ] ; do
55 | ls=`ls -ld "$PRG"`
56 | link=`expr "$ls" : '.*-> \(.*\)$'`
57 | if expr "$link" : '/.*' > /dev/null; then
58 | PRG="$link"
59 | else
60 | PRG=`dirname "$PRG"`"/$link"
61 | fi
62 | done
63 | SAVED="`pwd`"
64 | cd "`dirname \"$PRG\"`/" >&-
65 | APP_HOME="`pwd -P`"
66 | cd "$SAVED" >&-
67 |
68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
69 |
70 | # Determine the Java command to use to start the JVM.
71 | if [ -n "$JAVA_HOME" ] ; then
72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
73 | # IBM's JDK on AIX uses strange locations for the executables
74 | JAVACMD="$JAVA_HOME/jre/sh/java"
75 | else
76 | JAVACMD="$JAVA_HOME/bin/java"
77 | fi
78 | if [ ! -x "$JAVACMD" ] ; then
79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
80 |
81 | Please set the JAVA_HOME variable in your environment to match the
82 | location of your Java installation."
83 | fi
84 | else
85 | JAVACMD="java"
86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
87 |
88 | Please set the JAVA_HOME variable in your environment to match the
89 | location of your Java installation."
90 | fi
91 |
92 | # Increase the maximum file descriptors if we can.
93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
94 | MAX_FD_LIMIT=`ulimit -H -n`
95 | if [ $? -eq 0 ] ; then
96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
97 | MAX_FD="$MAX_FD_LIMIT"
98 | fi
99 | ulimit -n $MAX_FD
100 | if [ $? -ne 0 ] ; then
101 | warn "Could not set maximum file descriptor limit: $MAX_FD"
102 | fi
103 | else
104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
105 | fi
106 | fi
107 |
108 | # For Darwin, add options to specify how the application appears in the dock
109 | if $darwin; then
110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
111 | fi
112 |
113 | # For Cygwin, switch paths to Windows format before running java
114 | if $cygwin ; then
115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
117 |
118 | # We build the pattern for arguments to be converted via cygpath
119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
120 | SEP=""
121 | for dir in $ROOTDIRSRAW ; do
122 | ROOTDIRS="$ROOTDIRS$SEP$dir"
123 | SEP="|"
124 | done
125 | OURCYGPATTERN="(^($ROOTDIRS))"
126 | # Add a user-defined pattern to the cygpath arguments
127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
129 | fi
130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
131 | i=0
132 | for arg in "$@" ; do
133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
135 |
136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
138 | else
139 | eval `echo args$i`="\"$arg\""
140 | fi
141 | i=$((i+1))
142 | done
143 | case $i in
144 | (0) set -- ;;
145 | (1) set -- "$args0" ;;
146 | (2) set -- "$args0" "$args1" ;;
147 | (3) set -- "$args0" "$args1" "$args2" ;;
148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
154 | esac
155 | fi
156 |
157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
158 | function splitJvmOpts() {
159 | JVM_OPTS=("$@")
160 | }
161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
163 |
164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
165 |
--------------------------------------------------------------------------------
/app/app.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |