skip to Main Content

Android Studio – i can't reference a String that exists

Im trying to run this code: gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN) .requestIdToken(getString(R.string.default_web_client_id)) .requestEmail() .build(); but the R.string.default_web_client_id part isnt working (Cannot resolve symbol 'default_web_client_id'). i know that the 'default_web_client_id' string exists, but it isnt at the String XML, its in a…

VIEW QUESTION

Android Studio – XML document structures must start and end within the same entity?

What is the problem? <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.example.4" > <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <receiver android:name=".MainActivity" tools:ignore="IntentFilterExportedReceiver"> <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED"> </action> </intent-filter> </receiver> </application>

VIEW QUESTION
Back To Top
Search