Skip to content

Commit ca918aa

Browse files
committed
work on api
1 parent d18e96c commit ca918aa

38 files changed

Lines changed: 515 additions & 498 deletions

.idea/gradle.xml

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

.idea/jarRepositories.xml

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

.idea/misc.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/vcs.xml

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

app/build.gradle

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
plugins {
22
id 'com.android.application'
3+
id 'com.chaquo.python'
34
}
45

56
android {
@@ -11,8 +12,15 @@ android {
1112
targetSdkVersion 31
1213
versionCode 1
1314
versionName "1.0"
14-
15+
ndk {
16+
abiFilters "armeabi-v7a"
17+
}
1518
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
19+
python {
20+
pip {
21+
install "instaloader"
22+
}
23+
}
1624
}
1725

1826
buildTypes {
@@ -35,6 +43,8 @@ dependencies {
3543
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
3644
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.4.1'
3745
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
46+
implementation 'androidx.navigation:navigation-fragment:2.2.2'
47+
implementation 'androidx.navigation:navigation-ui:2.2.2'
3848
testImplementation 'junit:junit:4.+'
3949
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
4050
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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-
4+
<uses-permission android:name="android.permission.INTERNET" />
55
<application
66
android:allowBackup="true"
77
android:icon="@mipmap/ic_launcher"
@@ -10,7 +10,7 @@
1010
android:supportsRtl="true"
1111
android:theme="@style/Theme.InstaToolsAndroid">
1212
<activity
13-
android:name=".ui.login.LoginActivity"
13+
android:name="//TODO"
1414
android:label="@string/app_name">
1515
<intent-filter>
1616
<action android:name="android.intent.action.MAIN" />

app/src/main/java/com/moithepro/instatoolsandroid/data/LoginDataSource.java

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

app/src/main/java/com/moithepro/instatoolsandroid/data/LoginRepository.java

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

app/src/main/java/com/moithepro/instatoolsandroid/data/Result.java

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

app/src/main/java/com/moithepro/instatoolsandroid/data/model/LoggedInUser.java

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

0 commit comments

Comments
 (0)