Skip to content

Commit c2dd1f5

Browse files
authored
Merge pull request #127 from chrisws/12_22
ANDROID: bump version
2 parents 15f753f + 74407c0 commit c2dd1f5

File tree

5 files changed

+12
-26
lines changed

5 files changed

+12
-26
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dnl This program is distributed under the terms of the GPL v2.0
77
dnl Download the GNU Public License (GPL) from www.gnu.org
88
dnl
99

10-
AC_INIT([smallbasic], [12.22])
10+
AC_INIT([smallbasic], [12.23])
1111
AC_CONFIG_SRCDIR([configure.ac])
1212

1313
AC_CANONICAL_TARGET

src/common/Makefile.am

Lines changed: 6 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,13 @@ endif
1313
AM_CPPFLAGS = -I$(abs_top_builddir)/src -DPACKAGE_LIB_DIR=\""$(pkglibdir)"\"
1414

1515
EXTRA_DIST = \
16-
keywords.c \
17-
../languages/chars.el.h \
1816
../languages/chars.en.h \
19-
../languages/keywords.el.c \
2017
../languages/keywords.en.c \
21-
../languages/messages.el.h \
2218
../languages/messages.en.h \
23-
../modules/configure.in \
24-
../modules/example1.c \
25-
../modules/Makefile.am \
26-
../modules/mod_utils.c \
27-
../modules/mod_utils.h \
28-
../modules/example1.c \
29-
../modules/flite/flite.c \
30-
../modules/flite/Makefile \
31-
../modules/flite/README.TXT \
32-
../modules/flite/test.bas \
33-
../modules/gdbm/gdbm.c \
34-
../modules/gdbm/Makefile \
35-
../modules/mysql/Makefile.am \
36-
../modules/mysql/mysql.c
19+
../include/module.h \
20+
../include/osd.h \
21+
../include/var.h \
22+
../include/var_map.h
3723

3824
noinst_LIBRARIES = libsb_common.a
3925

@@ -64,7 +50,7 @@ libsb_common_a_SOURCES = \
6450
fs_socket_client.c fs_socket_client.h \
6551
fs_stream.c fs_stream.h \
6652
g_line.c \
67-
geom.c geom.h g_bmp.h \
53+
geom.c geom.h \
6854
inet.c inet.h \
6955
kw.c kw.h \
7056
pfill.c \
@@ -75,13 +61,12 @@ libsb_common_a_SOURCES = \
7561
str.c str.h \
7662
tasks.c tasks.h \
7763
hashmap.c hashmap.h \
78-
var_map.c var_map.h \
64+
var_map.c \
7965
var_eval.c var_eval.h \
8066
keymap.c keymap.h \
8167
units.c units.h \
8268
var.c var.h \
8369
messages.h \
84-
osd.h \
8570
sbapp.h \
8671
smbas.h \
8772
sys.h

src/platform/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ android {
99
applicationId 'net.sourceforge.smallbasic'
1010
minSdkVersion 16
1111
targetSdkVersion 30
12-
versionCode 49
13-
versionName "12.22"
12+
versionCode 50
13+
versionName "12.23"
1414
resConfigs "en"
1515
}
1616

src/platform/android/app/src/main/java/net/sourceforge/smallbasic/MainActivity.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import android.os.Bundle;
2626
import android.os.Environment;
2727
import android.os.Handler;
28+
import android.os.Looper;
2829
import android.util.Base64;
2930
import android.util.DisplayMetrics;
3031
import android.util.Log;
@@ -103,11 +104,11 @@ public class MainActivity extends NativeActivity {
103104
private boolean _untrusted = false;
104105
private final ExecutorService _audioExecutor = Executors.newSingleThreadExecutor();
105106
private final Queue<Sound> _sounds = new ConcurrentLinkedQueue<>();
107+
private final Handler _keypadHandler = new Handler(Looper.getMainLooper());
106108
private String[] _options = null;
107109
private MediaPlayer _mediaPlayer = null;
108110
private LocationAdapter _locationAdapter = null;
109111
private TextToSpeechAdapter _tts;
110-
private Handler _keypadHandler = new Handler();
111112

112113
static {
113114
System.loadLibrary("smallbasic");

src/platform/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
mavenCentral()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:7.0.0'
8+
classpath 'com.android.tools.build:gradle:7.0.1'
99
}
1010
}
1111

0 commit comments

Comments
 (0)