-
-
Notifications
You must be signed in to change notification settings - Fork 382
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update #96
base: native
Are you sure you want to change the base?
Update #96
Conversation
app/src/main/AndroidManifest.xml
Outdated
@@ -19,10 +18,11 @@ | |||
|
|||
<meta-data | |||
android:name="com.google.android.geo.API_KEY" | |||
android:value="AIzaSyAMQYClXhA2tZdfCzu9EK9wUDWtCRQ6Bj0" /> | |||
android:value="Update_witch_your_google_api_key" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please keep the original key
@@ -16,7 +16,6 @@ | |||
package org.traccar.manager; | |||
|
|||
public class ServiceException extends Exception { | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please revert the files that only have formatting changes like this.
@@ -41,9 +39,10 @@ public interface WebService { | |||
@GET("/api/devices") | |||
Call<List<Device>> getDevices(); | |||
|
|||
@GET("/api/commandtypes") | |||
@GET("api/commands/types") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keep the leading /
for consistency.
android:layout_height="wrap_content" | ||
android:layout_marginBottom="2dp" | ||
android:text="@string/action_click_to_send_command" /> | ||
<HorizontalScrollView |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are you using HorizontalScrollView
her instead of a simple view?
pluginManagement { | ||
|
||
repositories { | ||
gradlePluginPortal() | ||
google() | ||
mavenCentral() | ||
} | ||
|
||
} | ||
dependencyResolutionManagement { | ||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) | ||
repositories { | ||
google() | ||
mavenCentral() | ||
} | ||
|
||
} | ||
|
||
rootProject.name = "native" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need all this?
Correcao api key
@@ -0,0 +1,20 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should also remove the output and probably add it to the gitignore.
Return non updates files
I believe I managed to meet your considerations. |
You still have the output checked in, including the APK file. |
No description provided.