Skip to content

Commit 3e6faeb

Browse files
committed
orproject
1 parent 827a9f8 commit 3e6faeb

10 files changed

Lines changed: 21 additions & 197 deletions

File tree

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ android {
88

99
defaultConfig {
1010
applicationId "com.moithepro.instatoolsandroid"
11-
minSdkVersion 22
11+
minSdkVersion 28
1212
targetSdkVersion 31
1313
versionCode 1
1414
versionName "1.0"

app/src/main/AndroidManifest.xml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,21 @@
88
android:label="@string/app_name"
99
android:roundIcon="@mipmap/ic_launcher_round"
1010
android:supportsRtl="true"
11-
android:theme="@style/Theme.InstaToolsAndroid">
11+
android:theme="@style/Theme.AppCompat.Light">
1212
<activity
13-
android:name="//TODO"
14-
android:label="@string/app_name">
13+
android:name=".InstagramActivity"
14+
android:exported="false"
15+
android:screenOrientation="portrait"/>
16+
17+
<activity
18+
android:name=".AddProfileActivity"
19+
android:exported="false"
20+
android:screenOrientation="portrait"/>
21+
22+
<activity
23+
android:name=".RegisterActivity"
24+
android:exported="true"
25+
android:screenOrientation="portrait">
1526
<intent-filter>
1627
<action android:name="android.intent.action.MAIN" />
1728

app/src/main/java/AddProfileActivity.java renamed to app/src/main/java/com/moithepro/instatoolsandroid/AddProfileActivity.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
package com.moithepro.instatoolsandroid;
2+
13
import android.content.Intent;
24
import android.graphics.Color;
35
import android.os.Bundle;

app/src/main/java/InstagramActivity.java renamed to app/src/main/java/com/moithepro/instatoolsandroid/InstagramActivity.java

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
1+
package com.moithepro.instatoolsandroid;
2+
13
import androidx.appcompat.app.AlertDialog;
24
import androidx.appcompat.app.AppCompatActivity;
35
import androidx.constraintlayout.widget.ConstraintLayout;
46

57
import android.content.Intent;
6-
import android.graphics.Bitmap;
7-
import android.graphics.BitmapFactory;
88
import android.graphics.Color;
99
import android.os.Bundle;
1010
import android.view.View;
11-
import android.widget.ImageView;
1211
import android.widget.ScrollView;
13-
import android.widget.Toast;
14-
15-
import com.moithepro.instatoolsandroid.R;
1612

1713
import java.util.ArrayList;
18-
import java.util.LinkedList;
1914

2015
import or.nevet.goraphics.ExceptiOrn;
2116
import or.nevet.goraphics.GOraphicViewBuilder;

app/src/main/java/RegisterActivity.java renamed to app/src/main/java/com/moithepro/instatoolsandroid/RegisterActivity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
package com.moithepro.instatoolsandroid;
2+
13
import androidx.appcompat.app.AppCompatActivity;
24

35
import android.content.Intent;
@@ -6,8 +8,6 @@
68
import android.view.View;
79
import android.widget.EditText;
810

9-
import com.moithepro.instatoolsandroid.R;
10-
1111
import or.nevet.goraphics.ExceptiOrn;
1212
import or.nevet.goraphics.GOraphicViewBuilder;
1313
import or.nevet.goraphics.GOraphics;

app/src/main/res/layout/activity_login.xml

Lines changed: 0 additions & 76 deletions
This file was deleted.

app/src/main/res/layout/activity_main.xml

Lines changed: 0 additions & 33 deletions
This file was deleted.

app/src/main/res/layout/content_main.xml

Lines changed: 0 additions & 20 deletions
This file was deleted.

app/src/main/res/layout/fragment_first.xml

Lines changed: 0 additions & 28 deletions
This file was deleted.

app/src/main/res/layout/fragment_second.xml

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)