Skip to content

Commit

Permalink
Set Default lib
Browse files Browse the repository at this point in the history
Signed-off-by: BDUREAU <[email protected]>
  • Loading branch information
bdureau committed Dec 27, 2019
1 parent fc7dd67 commit d1ae3a7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file modified .idea/caches/build_file_checksums.ser
Binary file not shown.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependencies {
implementation 'com.google.android.gms:play-services:12.0.1'
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
implementation 'com.android.support:multidex:1.0.3'
implementation files('libs\\usbserial.jar')
implementation files('libs\\physicaloid.aar')
implementation files('libs/usbserial.jar')
implementation files('libs/physicaloid.aar')

}
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".FlashFirmware"></activity>
<activity android:name=".FlashFirmware" />
<activity android:name=".FlightViewMpActivity" />
<activity
android:name=".MainScreenActivity"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1110,7 +1110,7 @@ public void ReadConfig() {

//Graphics Lib Type
String graphicsLibType;
graphicsLibType = appConfig.getString("GraphicsLibType","");
graphicsLibType = appConfig.getString("GraphicsLibType","1");
if (!graphicsLibType.equals(""))
setGraphicsLibType(graphicsLibType);
} catch (Exception e) {
Expand Down

0 comments on commit d1ae3a7

Please sign in to comment.