Italian Goggle Play - Requisiti per nuove App e per Aggiornamenti

Star-Dust

Expert
Licensed User
Longtime User
Oggi ho ricevuto questo avviso da Google Play
https://android-developers.googleblog.com/2017/12/improving-app-security-and-performance.html

Sembra che ci siano aggiustamenti sulla sicurezza con dei meta dati a partire dal 2018
e nel corso dell'anno fino al successivo i requisiti per inserire nuove App e/o aggiornare le precedenti cambiano. Da quello che capisco io é richiesto che tutte le App abbiano Target SDK 23. (Android 6). Da agosto SDK 26 (android 8) e dal 2019 supporto per 64 bit.

Siccome io di inglese non sono molto ferrato, vorrei sapere se ho capito bene. E se ho capito bene che vuol dire? Come si ha il supporto a 64 bit? In soldoni che devo fare?:eek::eek::eek::eek: :confused::confused::confused::confused:o_Oo_Oo_Oo_Oo_O


P.S. Cos'é il BindService citato fra i cambiamenti del 2018?
Implicit intents for bindService() no longer supported (Android 5.0)
 

LucaMs

Expert
Licensed User
Longtime User
P.S. Cos'é il BindService citato fra i cambiamenti del 2018?
Esattamente la modifica pare riguardare i BindServices IMPLICITI, quindi non in generale (almeno così è scritto).

A questo link:
https://developer.android.com/guide/components/bound-services.html

non esattamente in italiano :D, si trova la spiegazione di cosa sia un BindService; in pratica, da quel che ho capito, si tratta di servizi della tua app a cui possono accedere altre app.

A bound service is an implementation of the Service class that allows other applications to bind to it and interact with it. To provide binding for a service, you must implement the onBind() callback method. This method returns an IBinder object that defines the programming interface that clients can use to interact with the service.
 
Top