document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. package dexer.poc;
  2.  
  3. import android.app.Activity;
  4. import android.os.Bundle;
  5.  
  6. public class MainActivity extends Activity {
  7.  
  8.     @Override
  9.     public void onCreate(Bundle savedInstanceState) {
  10.         super.onCreate(savedInstanceState);
  11.         setContentView(R.layout.main);
  12.        
  13.         int a = 4;
  14.         int b = 5;
  15.         int result = a*b;
  16.        
  17.         setTitle("This demo rocks: " + result);
  18.     }
  19. }
');