Last active
November 3, 2016 06:20
-
-
Save ajinasokan/c0eb78fa5f0b11f77f2932f02f7bee90 to your computer and use it in GitHub Desktop.
Class File for a basic Android App. Repo: https://github.com/ajinasokan/smallest-android-app-from-scratch Read: https://apkchef.net/build-smallest-android-app/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.myapp; | |
import android.app.Activity; | |
import android.os.Bundle; | |
public class MainActivity extends Activity { | |
@Override | |
public void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment