Skip to content

Commit

Permalink
App: Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
d3m1d0v committed Apr 3, 2018
1 parent 285393b commit 775085b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.vladislav.menu"
android:versionCode="1"
android:versionName="0.1.0-alpha">
android:versionCode="2"
android:versionName="0.5.0-beta">

<uses-permission android:name="android.permission.INTERNET" />

Expand All @@ -28,7 +28,7 @@
<activity
android:name="com.example.vladislav.screen.detailscreen.DetailScreenActivity"
android:label="@string/title_activity_detail_screen" />
<activity android:name="com.example.vladislav.screen.notificationscreen.ICONotificationActivity"></activity>
<activity android:name="com.example.vladislav.screen.notificationscreen.ICONotificationActivity"/>

<service
android:name="com.example.vladislav.service.TestFirebaseMessagingService">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Created by d3m1d0v on 22.03.2018.
*/

@Database(entities = {CurrencyData.class}, version = 2)
@Database(entities = {CurrencyData.class}, version = 3)
public abstract class CryptoDatabase extends RoomDatabase {

private static CryptoDatabase INSTANCE;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public MainScreenPresenter(@NonNull MainScreenContract.View view, @NonNull Crypt

@Override
public void onCurrencyItemClick(String currencyName) {
mView.showInfoToast(currencyName);
// mView.showInfoToast(currencyName);
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<string name="action_settings">Settings</string>

<string name="textView_about_app">Приложение для отслеживания курса покупки и продажи криптовалют. Студенческий проект, выполненный студентами 4 курса направления \"Программная инженерия\" группы ПИ-41.</string>
<string name="textView_version">\nВерсия 0.1.0-alpha\n\nСимферополь, 2018 г.</string>
<string name="textView_version">\nВерсия 0.5.0-beta\n\nСимферополь, 2018 г.</string>
<string name="item_not_implemented">Этот пункт ещё не реализован =(</string>

<string name="h1">1 ч</string>
Expand Down

0 comments on commit 775085b

Please sign in to comment.