Я работаю над приложением, которое использует Google Drive.Я хочу получить общедоступную ссылку для общего доступа.
Это невозможно с помощью API Google Диска, которые УСТАРЕЛИ и будут полностью закрыты в течение нескольких месяцев:
https://developers.google.com/drive/android/deprecation
December 6, 2019 The Drive Android API is shut down and all connection attempts will be refused. Clients must migrate by this date.
Например:
public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. switch (item.getItemId()) { case R.id.get_shared_resource: startLink(); break; default: // ... } } private void startLink() { Intent i = new Intent(Intent.ACTION_VIEW); i.setData(Uri.parse(https://drive.google.com/...)); startActivity(i); }