File tree Expand file tree Collapse file tree 3 files changed +22
-2
lines changed
demo/src/main/java/com/daimajia/slider/demo Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 1
1
package com .daimajia .slider .demo ;
2
2
3
+ import android .content .Intent ;
4
+ import android .net .Uri ;
3
5
import android .os .Bundle ;
4
6
import android .support .v7 .app .ActionBarActivity ;
5
7
import android .view .Menu ;
@@ -101,7 +103,9 @@ public boolean onOptionsItemSelected(MenuItem item) {
101
103
mDemoSlider .setCustomAnimation (new DescriptionAnimation ());
102
104
break ;
103
105
case R .id .action_github :
104
-
106
+ Intent browserIntent = new Intent (Intent .ACTION_VIEW , Uri .parse ("https://github.com/daimajia/AndroidImageSlider" ));
107
+ startActivity (browserIntent );
108
+ break ;
105
109
}
106
110
return super .onOptionsItemSelected (item );
107
111
}
Original file line number Diff line number Diff line change 15
15
# When configured, Gradle will run in incubating parallel mode.
16
16
# This option should only be used with decoupled projects. More details, visit
17
17
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18
- # org.gradle.parallel=true
18
+ # org.gradle.parallel=true
19
+
20
+
21
+ VERSION_NAME =1.0
22
+ VERSION_CODE =1
23
+ GROUP =com.daimajia.slider
24
+
25
+ POM_DESCRIPTION =An amazing and convenient Android image slider.
26
+ POM_URL =https://github.com/daimajia/AndroidImageSlider
27
+ POM_SCM_URL =https://github.com/daimajia/AndroidImageSlider
28
+ POM_SCM_CONNECTION =scm:https://github.com/daimajia/AndroidImageSlider.git
29
+ POM_SCM_DEV_CONNECTION =scm:https://github.com/daimajia/AndroidImageSlider.git
30
+ POM_LICENCE_NAME =MIT
31
+ POM_LICENCE_URL =http://opensource.org/licenses/MIT
32
+ POM_LICENCE_DIST =repo
33
+ POM_DEVELOPER_ID =daimajia
34
+ POM_DEVELOPER_NAME =daimajia
You can’t perform that action at this time.
0 commit comments