Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
.DS_Store
*.iml
.gradle

/.gradle/
/local.properties
/.idea/workspace.xml
/.idea/libraries
/.idea/*
.DS_Store
/build
/captures
.externalNativeBuild
build/

/.idea/
/build/
/app/build/
crashlytics-build.properties
/app/fabric.properties
/projectFilesBackup/
/infer-out/
2 changes: 1 addition & 1 deletion app/src/debug/res/values/google_maps_api.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ https://console.developers.google.com/flows/enableapi?apiid=maps_android_backend
string in this file.
-->
<string name="google_maps_key" translatable="false" templateMergeStrategy="preserve">
AIzaSyA0SKYpzdUhe_XMcGyXiKn5RpTLlMFLiL8
AIzaSyBV7jGJpsuW5nt0nsjSgw62GlrpdBkTapo
</string>
</resources>
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,10 @@ private void setUpMap() {
markerBuilderManager = new MarkerBuilderManagerV2.Builder(this)
.map(mMap)
.enabled(true)
.radius(200)
.fillColor(Color.BLUE)
.build();

markerBuilderManager.markThis(new LatLng(3, 3), true, Color.CYAN, Color.YELLOW);
}

@Override
Expand Down
4 changes: 2 additions & 2 deletions app/version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Sat Feb 25 08:27:44 PHT 2017
VERSION_CODE=8
#Tue Apr 18 14:46:00 PHT 2017
VERSION_CODE=43
15 changes: 14 additions & 1 deletion geofencemarkerbuilder/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,14 @@
/build
.DS_Store
*.iml

/.gradle/
/local.properties
build/

/.idea/
/build/
/app/build/
crashlytics-build.properties
/app/fabric.properties
/projectFilesBackup/
/infer-out/
4 changes: 0 additions & 4 deletions geofencemarkerbuilder/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}

dependencies {
Expand Down
Loading