Skip to content

Commit 26594a4

Browse files
committed
Issue17 fixed bug with NullPointer exception
Created signed release app
1 parent d016419 commit 26594a4

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

app/app-release.apk

-26.1 KB
Binary file not shown.

app/build.gradle

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

33
android {
4-
compileSdkVersion 23
4+
compileSdkVersion 26
55
buildToolsVersion '25.0.0'
6-
76
defaultConfig {
87
applicationId "com.prismaqf.callblocker"
98
minSdkVersion 16
10-
targetSdkVersion 23
11-
versionCode 2
12-
versionName "1.2"
9+
targetSdkVersion 26
10+
versionCode 3
11+
versionName "1.2.1"
1312
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1413
}
1514
buildTypes {
@@ -21,10 +20,12 @@ android {
2120
debuggable true
2221
}
2322
}
23+
productFlavors {
24+
}
2425
}
2526

2627
dependencies {
27-
compile fileTree(dir: 'libs', include: ['*.jar'])
28+
compile fileTree(include: ['*.jar'], dir: 'libs')
2829
testCompile 'junit:junit:4.12'
2930
testCompile 'org.mockito:mockito-core:1.10.19'
3031
androidTestCompile 'com.android.support.test:runner:0.5'

app/src/main/java/com/prismaqf/callblocker/CallHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ int getNumTriggered() {
6262
private int numReceived;
6363
private int numTriggered;
6464
private long myRunId;
65-
private List<Filter> myFilters;
65+
private List<Filter> myFilters = new ArrayList<>();
6666

6767
/**
6868
* Method to return the only intance of CallHelper (singleton)

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
dependencies {
88
//classpath 'com.android.tools.build:gradle:2.3.0-beta2'
9-
classpath 'com.android.tools.build:gradle:2.2.3'
9+
classpath 'com.android.tools.build:gradle:2.3.3'
1010

1111
// NOTE: Do not place your application dependencies here; they belong
1212
// in the individual module build.gradle files

0 commit comments

Comments
 (0)