Your app contains exposed Google Cloud Platform (GCP) API keys. Please see this Google Help Center article for details.
Vulnerable locations:
com.abc.Youtube_Player->onCreate
This is How my code look at the back end
public class Youtube_Player extends AppCompatActivity implements YouTubePlayer.OnInitializedListener { // YouTube player view public static final String GOOGLE_API_KEY = "<api key>"; @Overrideprotected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_youtube__player); // Initializing video player with developer key mPlayerView.initialize(GOOGLE_API_KEY, this); }}