We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26355d1 commit c889d58Copy full SHA for c889d58
app/src/main/java/de/k3b/android/androFotoFinder/queries/FotoSql.java
@@ -135,7 +135,8 @@ public class FotoSql extends FotoSqlBase {
135
136
// only works with api >= 16
137
public static final String SQL_COL_MAX_WITH =
138
- (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN)
+ // #155: android10 incompatibility: check if the sqLite-max() function is the problem
139
+ (false && (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN))
140
? "max(" + MediaStore.Images.Media.WIDTH + "," +
141
MediaStore.Images.Media.HEIGHT +")"
142
: "1024";
0 commit comments