Skip to content

Commit

Permalink
修改arcgis maven地址
Browse files Browse the repository at this point in the history
  • Loading branch information
roomanl committed Dec 20, 2021
1 parent 73a81f6 commit b9c3dff
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "cn.sddman.gis"
minSdkVersion 19
targetSdkVersion 28
versionCode 19
versionName "1.9"
versionCode 20
versionName "2.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
4 changes: 2 additions & 2 deletions arcgistool/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
defaultConfig {
minSdkVersion 19
targetSdkVersion 28
versionCode 18
versionName "1.8"
versionCode 20
versionName "2.0"
}

buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ private void clearBgColor(){
drawingEllipseLayout.setBackgroundColor(getResources().getColor(R.color.transparent));
drawingRhombusLayout.setBackgroundColor(getResources().getColor(R.color.transparent));
}
public void onMapSingleTapUp(MotionEvent e){
public void onSingleTapConfirmed(MotionEvent e){
initDrawGraph();
if(graphType== Variable.GraphType.CIRCLE){
arcGisDrawGraph.drawCircle(e.getX(), e.getY());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public void onClick(View view) {
}
}
};
public void onMapSingleTapUp(MotionEvent e){
public void onSingleTapConfirmed(MotionEvent e){
if(drawType==Variable.DrawType.LINE) {
arcgisMeasure.startMeasuredLength(e.getX(), e.getY());
}else if(drawType==Variable.DrawType.POLYGON){
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ allprojects {
// mavenLocal()
google()
jcenter()
maven { url 'https://esri.bintray.com/arcgis' }
maven { url 'https://esri.jfrog.io/artifactory/arcgis' }
maven { url 'https://jitpack.io' }
}
}
Expand Down

0 comments on commit b9c3dff

Please sign in to comment.