├── debug.keystore
├── template_files
├── strings.xml
├── activity_main.xml
├── MainActivity.java
└── AndroidManifest.xml
└── README.md
/debug.keystore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/authmane512/android-project-template/HEAD/debug.keystore
--------------------------------------------------------------------------------
/template_files/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | {{ APP_NAME }}
3 | Settings
4 | MainActivity
5 |
6 |
--------------------------------------------------------------------------------
/template_files/activity_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Hello!
2 |
3 | I've made this little script that allow you to init, compile and run an Android Project. I tried to make it as simple as possible to allow you to understand and modify it easily. If you think there is a very important missing feature, don't hesitate to do a pull request on Github and I will answer quickly.
4 |
5 | To use it, check this tutorial:
6 | https://medium.com/@authmane512/how-to-do-android-development-faster-without-gradle-9046b8c1cf68
7 |
8 | Thanks!
9 |
10 |
--------------------------------------------------------------------------------
/template_files/MainActivity.java:
--------------------------------------------------------------------------------
1 | package {{ PACKAGE_NAME }};
2 |
3 | import android.app.Activity;
4 | import android.view.View;
5 | import android.os.Bundle;
6 | import android.widget.*;
7 |
8 | public class MainActivity extends Activity {
9 | RelativeLayout layout;
10 |
11 | @Override
12 | protected void onCreate(Bundle savedInstanceState) {
13 | super.onCreate(savedInstanceState);
14 |
15 | layout = (RelativeLayout)RelativeLayout.inflate(this, R.layout.activity_main, null);
16 | setContentView(layout);
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/template_files/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------