Skip to content
This repository was archived by the owner on Jun 27, 2020. It is now read-only.

Commit ca3dc50

Browse files
author
Evgenii
committed
Remove Vungle, SplashActivity. Add new material icon.
1 parent e222c8c commit ca3dc50

File tree

22 files changed

+16
-199
lines changed

22 files changed

+16
-199
lines changed

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 21
4+
compileSdkVersion 23
55
buildToolsVersion '21.1.2'
66
defaultConfig {
77
applicationId 'com.blogspot.e_kanivets.moneytracker'
88
minSdkVersion 10
9-
targetSdkVersion 21
10-
versionCode 2
11-
versionName '1.1.2'
9+
targetSdkVersion 23
10+
versionCode 3
11+
versionName '1.1.3'
1212
}
1313
buildTypes {
1414
release {
@@ -52,4 +52,4 @@ dependencies {
5252
compile fileTree(dir: 'libs', include: ['*.jar'])
5353
compile 'com.android.support:appcompat-v7:21.0.3'
5454
compile 'com.google.android.gms:play-services:6.5.87'
55-
}
55+
}

app/libs/dagger-1.2.2.jar

-59.1 KB
Binary file not shown.

app/libs/javax.inject-1.jar

-2.44 KB
Binary file not shown.

app/libs/nineoldandroids-2.4.0.jar

-108 KB
Binary file not shown.
-708 KB
Binary file not shown.

app/src/main/AndroidManifest.xml

Lines changed: 7 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.blogspot.e_kanivets.moneytracker" >
3+
package="com.blogspot.e_kanivets.moneytracker">
44

55
<!-- permissions to download and cache video ads for playback -->
66
<uses-permission android:name="android.permission.INTERNET" />
@@ -10,36 +10,22 @@
1010
<application
1111
android:name="com.blogspot.e_kanivets.moneytracker.util.MTApp"
1212
android:allowBackup="true"
13-
android:icon="@drawable/ic_launcher"
13+
android:icon="@mipmap/ic_launcher"
1414
android:label="@string/app_name"
15-
android:theme="@style/Theme.AppCompat.Light" >
16-
<activity android:name=".activity.SplashActivity"
17-
android:theme="@style/Theme.NoTitle">
15+
android:theme="@style/Theme.AppCompat.Light">
16+
17+
<activity
18+
android:name="com.blogspot.e_kanivets.moneytracker.activity.MainActivity"
19+
android:label="@string/app_name">
1820
<intent-filter>
1921
<action android:name="android.intent.action.MAIN" />
2022

2123
<category android:name="android.intent.category.LAUNCHER" />
2224
</intent-filter>
2325
</activity>
2426

25-
<activity
26-
android:name="com.blogspot.e_kanivets.moneytracker.activity.MainActivity"
27-
android:label="@string/app_name" >
28-
</activity>
29-
3027
<activity android:name="com.blogspot.e_kanivets.moneytracker.activity.ReportActivity" />
3128

32-
<activity android:name="com.blogspot.e_kanivets.moneytracker.activity.ThankAuthorActivity" />
33-
34-
<activity
35-
android:name="com.vungle.publisher.FullScreenAdActivity"
36-
android:configChanges="keyboardHidden|orientation|screenSize"
37-
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
38-
39-
<service
40-
android:name="com.vungle.publisher.VungleService"
41-
android:exported="false" />
42-
4329
<meta-data
4430
android:name="com.google.android.gms.version"
4531
android:value="@integer/google_play_services_version" />

app/src/main/ic_launcher-web.png

14.8 KB
Loading

app/src/main/java/com/blogspot/e_kanivets/moneytracker/activity/ReportActivity.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,6 @@ private void initViews() {
5757
/*tvTitle.setText("REPORT (" + MTHelper.getInstance().getFirstDay() + " - "
5858
+ MTHelper.getInstance().getLastDay() + ")");*/
5959

60-
findViewById(R.id.btn_thank_author).setOnClickListener(new View.OnClickListener() {
61-
@Override
62-
public void onClick(View view) {
63-
Intent intent = new Intent(ReportActivity.this, ThankAuthorActivity.class);
64-
startActivity(intent);
65-
}
66-
});
67-
6860
listView.setAdapter(new ReportItemAdapter(activity,
6961
new Report(MTHelper.getInstance().getRecords()).getReportList()));
7062

app/src/main/java/com/blogspot/e_kanivets/moneytracker/activity/SplashActivity.java

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

app/src/main/java/com/blogspot/e_kanivets/moneytracker/activity/ThankAuthorActivity.java

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

0 commit comments

Comments
 (0)