feat: add readme
This commit is contained in:
parent
02fb881274
commit
37e4d063d7
3
README.md
Normal file
3
README.md
Normal file
@ -0,0 +1,3 @@
|
||||
# API
|
||||
|
||||
Lien de l'api nécessaire : https://gitea.lyc-lecastel.fr/francois.baille/apiDepannTout
|
@ -13,7 +13,7 @@ import org.json.JSONArray
|
||||
|
||||
class Importation {
|
||||
fun importInterventionsFromServer(context: Context, callback: (List<Intervention>) -> Unit) {
|
||||
val url = "http://192.168.48.185:8000/interventions"
|
||||
val url = "http://" + context.getString(R.string.ip_adress) + ":8000/interventions"
|
||||
val queue = Volley.newRequestQueue(context)
|
||||
|
||||
val interventionsList = mutableListOf<Intervention>()
|
||||
@ -48,7 +48,7 @@ class Importation {
|
||||
}
|
||||
|
||||
fun importClientsFromServer(context: Context, callback: (List<Client>) -> Unit) {
|
||||
val url = "http://192.168.48.185:8000/clients"
|
||||
val url = "http://" + context.getString(R.string.ip_adress) + ":8000/clients"
|
||||
val queue = Volley.newRequestQueue(context)
|
||||
|
||||
val clientsList = mutableListOf<Client>()
|
||||
|
@ -50,7 +50,7 @@ class createClient : AppCompatActivity() {
|
||||
finish()
|
||||
|
||||
val queue = Volley.newRequestQueue(this)
|
||||
val url = "http://192.168.48.185:8000/client"
|
||||
val url = "http://" + getString(R.string.ip_adress) + ":8000/client"
|
||||
val jsonObjectRequest = object : JsonObjectRequest(
|
||||
Method.POST, url, null,
|
||||
{ },
|
||||
|
@ -1,3 +1,4 @@
|
||||
<resources>
|
||||
<string name="app_name">DepannTout</string>
|
||||
<string name="ip_adress">192.168.48.185</string>
|
||||
</resources>
|
Loading…
x
Reference in New Issue
Block a user