android rtsp的头文件
我计划创建rtsp/rtp实时视频流移动到服务器,但我
import android.net.rtp;
import android.net.RtpStream;
在android上创建标头包,但这显示错误“无法解析导入android.net.rtp
“。任何人都可以帮助我,并给我示例 rtsp android
我遵循那个。欢迎所有想法。提前致谢
I plan to create rtsp/rtp live video streaming mobile to server but i create header package
import android.net.rtp;
import android.net.RtpStream;
on android but this is show error "The import android.net.rtp cannot be resolved
".Any one can please help me,and give me sample rtsp android
i follow that one.All ideas are welcome.Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的项目中使用什么 API?应该是级别不对吧
What API are you using in your project? It's probably the wrong level.
这些软件包自 API 级别 12 起可用。
您需要将清单文件中
字段的android:minSdkVersion
或android:targetSdkVersion
属性更改为12< /代码>。
These packages available since API level 12.
You need to change
android:minSdkVersion
orandroid:targetSdkVersion
property of<uses-sdk>
field in manifest file to12
.