Skip to content

Commit 133220e

Browse files
committed
Change Api url address.
1 parent 38f47c8 commit 133220e

File tree

1 file changed

+3
-2
lines changed
  • data/src/main/java/com/fernandocejas/android10/sample/data/net

1 file changed

+3
-2
lines changed

data/src/main/java/com/fernandocejas/android10/sample/data/net/RestApi.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
77
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
8+
* http://www.apache.org/licenses/LICENSE-2.0
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
@@ -23,7 +23,8 @@
2323
* RestApi for retrieving data from the network.
2424
*/
2525
public interface RestApi {
26-
String API_BASE_URL = "http://www.android10.org/myapi/";
26+
String API_BASE_URL =
27+
"https://raw.githubusercontent.com/android10/Sample-Data/master/Android-CleanArchitecture/";
2728

2829
/** Api url for getting all users */
2930
String API_URL_GET_USER_LIST = API_BASE_URL + "users.json";

0 commit comments

Comments
 (0)