我已经完成了SDK中的示例,现在在尝试运行演示应用时收到以下错误。
引起:java.lang.ClassNotFoundException:没找到类" com.rythmair.licenseverification.MainActivity" on path:DexPathList [[zip file" /data/app/com.rythmair.licenseverification-2/base.apk"],nativeLibraryDirectories = [/ vendor / lib,/ system / lib]]
这是我的完整主要活动
Dim startRow As Long
Dim i As Long
Dim lastRow As Long
Dim sh As Worksheet
startRow = 2 'Set first row to check
Set sh = ThisWorkbook.Worksheets("Sheet1")
lastRow = sh.Cells(sh.Rows.Count, "A").End(xlUp).Row
For i = startRow To lastRow
If sh.Cells(i, 1) = "" Then
MsgBox "First empty row: " & i
Exit For
End If
Next i
非常感谢帮助我解决问题的任何帮助。
答案 0 :(得分:0)