我在我的 android 类中添加了一些本机方法Activity
。现在我想为它创建头文件class
。
从命令行创建头文件时出现以下错误。
C:\AndroidProjects\JniTest\bin\classes>javah -classpath .;
C:\adt-bundle-windows-x86\sdk\platforms\android.jar com.example.jnitest.JniTest
Error: cannot access android.app.Activity
class file for android.app.Activity not found
基本上无法从 jar 中访问活动类。
请指教。