File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed
src/net/osmand/aidlapi/navigation
OsmAnd/src/net/osmand/aidl/navigation Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
22apply plugin : ' com.github.dcendents.android-maven'
33
44group = ' com.github.osmandapp'
5- version = ' 2.0.1 '
5+ version = ' 2.0.0 '
66
77android {
88 compileSdkVersion 27
Original file line number Diff line number Diff line change @@ -42,6 +42,14 @@ public OnVoiceNavigationParams[] newArray(int size) {
4242 }
4343 };
4444
45+ public List <String > getCommands () {
46+ return cmds ;
47+ }
48+
49+ public List <String > getPlayed () {
50+ return played ;
51+ }
52+
4553 @ Override
4654 public void writeToBundle (Bundle bundle ) {
4755 bundle .putStringArrayList ("cmds" , cmds );
Original file line number Diff line number Diff line change @@ -37,6 +37,14 @@ public OnVoiceNavigationParams[] newArray(int size) {
3737 }
3838 };
3939
40+ public List <String > getCommands () {
41+ return cmds ;
42+ }
43+
44+ public List <String > getPlayed () {
45+ return played ;
46+ }
47+
4048 @ Override
4149 public void writeToParcel (Parcel out , int flags ) {
4250 out .writeStringList (cmds );
You can’t perform that action at this time.
0 commit comments