Skip to content

Commit 1162212

Browse files
committed
finally
1 parent f7106b4 commit 1162212

56 files changed

Lines changed: 2435 additions & 280 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.idea/codeStyles/Project.xml

Lines changed: 135 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 1 addition & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 8 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ android {
1313
versionCode 1
1414
versionName "1.0"
1515
ndk {
16-
abiFilters "armeabi-v7a"
16+
abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
1717
}
1818
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1919
python {
@@ -36,7 +36,7 @@ android {
3636
}
3737

3838
dependencies {
39-
39+
implementation 'com.google.code.gson:gson:2.8.8'
4040
implementation 'androidx.appcompat:appcompat:1.4.2'
4141
implementation 'com.google.android.material:material:1.6.1'
4242
implementation 'androidx.annotation:annotation:1.3.0'
@@ -45,6 +45,10 @@ dependencies {
4545
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
4646
implementation 'androidx.navigation:navigation-fragment:2.2.2'
4747
implementation 'androidx.navigation:navigation-ui:2.2.2'
48+
implementation 'androidx.drawerlayout:drawerlayout:1.0.0'
49+
implementation 'de.hdodenhof:circleimageview:3.1.0'
50+
implementation 'com.github.bumptech.glide:glide:4.13.2'
51+
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.2'
4852
testImplementation 'junit:junit:4.+'
4953
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
5054
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

app/libs/GOraphics.aar

-25.8 KB
Binary file not shown.

app/src/main/AndroidManifest.xml

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,38 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.moithepro.instatoolsandroid">
4-
<uses-permission android:name="android.permission.INTERNET" />
4+
55
<application
66
android:allowBackup="true"
77
android:icon="@mipmap/ic_launcher"
88
android:label="@string/app_name"
99
android:roundIcon="@mipmap/ic_launcher_round"
1010
android:supportsRtl="true"
11-
android:theme="@style/Theme.AppCompat.Light">
11+
android:theme="@style/Theme.MaterialComponents.DayNight.NoActionBar">
1212
<activity
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-
13+
android:name=".UsersActivity"
14+
android:configChanges="orientation"
15+
android:screenOrientation="portrait" />
2216
<activity
23-
android:name=".RegisterActivity"
24-
android:exported="true"
25-
android:screenOrientation="portrait">
17+
android:name=".UnfollowersActivity"
18+
android:configChanges="orientation"
19+
android:screenOrientation="portrait" />
20+
<activity android:name=".LoginActivity" android:configChanges="orientation"
21+
android:screenOrientation="portrait"
22+
android:exported="true">
2623
<intent-filter>
2724
<action android:name="android.intent.action.MAIN" />
2825

2926
<category android:name="android.intent.category.LAUNCHER" />
27+
3028
</intent-filter>
3129
</activity>
30+
31+
<meta-data
32+
android:name="preloaded_fonts"
33+
android:resource="@array/preloaded_fonts" />
3234
</application>
3335

36+
<uses-permission android:name="android.permission.INTERNET" />
37+
3438
</manifest>

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

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

0 commit comments

Comments
 (0)