-
Notifications
You must be signed in to change notification settings - Fork 22
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
Code aptation to Android 9 #92
base: master
Are you sure you want to change the base?
Conversation
@@ -52,9 +52,9 @@ | |||
public final class Config { | |||
public static final boolean DEBUG = true; | |||
|
|||
public static final String SERVER_STATUS_URL = "https://greenhubproject.org/"; | |||
public static final String SERVER_STATUS_URL = "http://192.168.1.251:8000/"; |
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.
Local addresses can't be added to the production codebase.
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.
done
<?xml version="1.0" encoding="utf-8"?> | ||
<network-security-config> | ||
<domain-config cleartextTrafficPermitted="true"> | ||
<domain includeSubdomains="true">192.168.1.251</domain> |
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.
Same situation here with the local address.
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.
Hello Magnus thank you for submitting the improvements for Android 9 it is very helpful. I will ask you to remove the local IP addresses references because they are not used in production environment.
No description provided.