Skip to content

Commit

Permalink
Fix for pires#146
Browse files Browse the repository at this point in the history
Fix for pires#146
  • Loading branch information
Pho3niX90 committed May 17, 2016
1 parent c836096 commit d1c579f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
<activity
android:name="com.github.pires.obd.reader.activity.MainActivity"
android:configChanges="orientation|screenSize"
android:launchMode="singleInstance"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand All @@ -32,20 +33,25 @@
</activity>
<activity
android:name="com.github.pires.obd.reader.activity.ConfigActivity"
android:launchMode="singleInstance"
android:label="@string/app_name"></activity>
<activity
android:name="com.github.pires.obd.reader.activity.TroubleCodesActivity"
android:launchMode="singleInstance"
android:label="@string/title_activity_trouble_codes"></activity>

<activity
android:name="com.github.pires.obd.reader.activity.TripListActivity"
android:launchMode="singleInstance"
android:label="@string/title_activity_trips_list"></activity>

<service
android:name="com.github.pires.obd.reader.io.ObdGatewayService"
android:launchMode="singleInstance"
android:exported="false" />
<service
android:name="com.github.pires.obd.reader.io.MockObdGatewayService"
android:launchMode="singleInstance"
android:exported="false" />
</application>

Expand Down

0 comments on commit d1c579f

Please sign in to comment.