New shield button POC

This commit is contained in:
xfileFIN 2020-09-03 00:07:52 +03:00
parent 29bea3b1c6
commit d38afae3a7
4 changed files with 153 additions and 6 deletions

View file

@ -0,0 +1,15 @@
package com.google.android.apps.youtube.app;
import android.app.Application;
import android.content.Context;
import android.os.Bundle;
public class YouTubeApplication extends Application {
protected void onCreate(final Bundle bundle) {
super.onCreate();
}
public static Context getAppContext() {
return null;
}
}