Skip to content

Commit

Permalink
ommit
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbatovK committed Jul 22, 2021
1 parent 1302a19 commit a7b4b5f
Show file tree
Hide file tree
Showing 43 changed files with 1,143 additions and 875 deletions.
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/dictionaries/User.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 1 addition & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,9 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'org.jsoup:jsoup:1.13.1'
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
implementation 'androidx.navigation:navigation-fragment:2.3.5'
implementation 'androidx.navigation:navigation-ui:2.3.5'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1'
implementation 'androidx.preference:preference:1.1.1'
implementation 'org.jsoup:jsoup:1.13.1'
implementation 'androidx.work:work-runtime:2.5.0'
implementation 'com.squareup.picasso:picasso:2.5.2'
testImplementation 'junit:junit:4.13.2'
Expand Down
19 changes: 11 additions & 8 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,31 +22,34 @@
tools:ignore="AllowBackup"
tools:targetApi="m">

<activity android:name=".SplashActivity">
<activity android:name=".activity.SplashActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity
android:name=".LikedNewsActivity"
android:name=".activity.LikedNewsActivity"
android:label="@string/str_liked"
android:parentActivityName=".MainActivity">
android:parentActivityName=".activity.MainActivity">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".MainActivity" />
android:value=".activity.MainActivity" />
</activity>

<activity
android:name=".SettingsActivity"
android:name=".activity.SettingsActivity"
android:label="@string/title_activity_settings" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".MainActivity" />
android:value=".activity.MainActivity" />
</activity>

<activity
android:name=".MainActivity"
android:name=".activity.MainActivity"
android:label="@string/str_main_page" />
</application>

</application>
</manifest>
7 changes: 4 additions & 3 deletions app/src/main/assets/sites_table.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
insert into sites_table (name, url) values ('Habr', 'https://habr.com/ru/rss/all/all');
insert into sites_table (name, url) values ('Hi-News', 'https://hi-news.ru/feed');
insert into sites_table (name, url) values ('HiNews', 'https://hi-news.ru/feed');
insert into sites_table (name, url) values ('Ixbt News', 'https://www.ixbt.com/export/news.rss');
insert into sites_table (name, url) values ('Новости Ай-Ти', 'https://novostit.com/feed');
insert into sites_table (name, url) values ('Новости IT', 'https://novostit.com/feed');
insert into sites_table (name, url) values ('BBC Tech', 'http://feeds.bbci.co.uk/news/technology/rss.xml');
insert into sites_table (name, url) values ('BBC News', 'http://feeds.bbci.co.uk/news/world/rss.xml');
insert into sites_table (name, url) values ('Лента.Ру', 'https://lenta.ru/rss/top7')
insert into sites_table (name, url) values ('Лента.Ру', 'https://lenta.ru/rss/top7');
insert into sites_table (name, url) values ('Habrahabr', 'https://habrahabr.ru/rss/hubs');

This file was deleted.

Loading

0 comments on commit a7b4b5f

Please sign in to comment.