Skip to content

Commit

Permalink
service exported=false
Browse files Browse the repository at this point in the history
  • Loading branch information
aykuttasil committed Feb 8, 2019
1 parent afed392 commit a8a9931
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ dependencies {
exclude group: 'com.android.support', module: 'support-annotations'
})
testImplementation 'junit:junit:4.12'
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation project(':callrecord')
}
2 changes: 1 addition & 1 deletion callrecord/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies {
exclude group: 'com.android.support', module: 'support-annotations'
})
testImplementation 'junit:junit:4.12'
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}

Expand Down
4 changes: 1 addition & 3 deletions callrecord/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.aykuttasil.callrecord">


<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS" />
Expand All @@ -12,10 +11,9 @@
android:label="@string/app_name"
android:supportsRtl="true">


<service
android:name=".service.CallRecordService"
android:exported="true" />
android:exported="false" />

<!--
<receiver android:name=".CallReceiver" >
Expand Down

0 comments on commit a8a9931

Please sign in to comment.