Skip to content

Instantly share code, notes, and snippets.

@moyheen
Last active October 6, 2016 16:27
Show Gist options
  • Save moyheen/6a3d77e7f899df8dc5fa39e64f9793d2 to your computer and use it in GitHub Desktop.
Save moyheen/6a3d77e7f899df8dc5fa39e64f9793d2 to your computer and use it in GitHub Desktop.
package com.truppr.careers;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
public class TrupprActivity extends AppCompatActivity {
private static final String TAG = TrupprActivity.class.getSimpleName();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Log.i(TAG, "We are hiring");
// TODO: Head over to www.truppr.com/careers for requirements and submission details
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment