实例介绍
google obb 下载需要的工程,可以和cocos2dx配合使用。
【实例截图】
【核心代码】
OBBDownloader
└── UnityOBBDownloader
├── AndroidManifest.xml
├── ant.properties
├── bin
│ ├── AndroidManifest.xml
│ ├── classes
│ │ └── com
│ │ │ └── android
│ │ │ └── vending
│ │ │ ├── expansion
│ │ │ │ └── downloader
│ │ │ │ ├── Constants.class
│ │ │ │ ├── DownloaderClientMarshaller$Proxy.class
│ │ │ │ ├── DownloaderClientMarshaller$Stub$1.class
│ │ │ │ ├── DownloaderClientMarshaller$Stub$2.class
│ │ │ │ ├── DownloaderClientMarshaller$Stub.class
│ │ │ │ ├── DownloaderClientMarshaller.class
│ │ │ │ ├── DownloaderServiceMarshaller$Proxy.class
│ │ │ │ ├── DownloaderServiceMarshaller$Stub$1.class
│ │ │ │ ├── DownloaderServiceMarshaller$Stub.class
│ │ │ │ ├── DownloaderServiceMarshaller.class
│ │ │ │ ├── DownloadProgressInfo$1.class
│ │ │ │ ├── DownloadProgressInfo.class
│ │ │ │ ├── Helpers.class
│ │ │ │ ├── IDownloaderClient.class
│ │ │ │ ├── IDownloaderService.class
│ │ │ │ ├── impl
│ │ │ │ │ ├── AndroidHttpClient$1.class
│ │ │ │ │ ├── AndroidHttpClient$2.class
│ │ │ │ │ ├── AndroidHttpClient$CurlLogger.class
│ │ │ │ │ ├── AndroidHttpClient$LoggingConfiguration.class
│ │ │ │ │ ├── AndroidHttpClient.class
│ │ │ │ │ ├── CustomIntentService$ServiceHandler.class
│ │ │ │ │ ├── CustomIntentService.class
│ │ │ │ │ ├── CustomNotificationFactory.class
│ │ │ │ │ ├── DownloaderService$GenerateSaveFileError.class
│ │ │ │ │ ├── DownloaderService$InnerBroadcastReceiver.class
│ │ │ │ │ ├── DownloaderService$LVLRunnable$1.class
│ │ │ │ │ ├── DownloaderService$LVLRunnable.class
│ │ │ │ │ ├── DownloaderService.class
│ │ │ │ │ ├── DownloadInfo.class
│ │ │ │ │ ├── DownloadNotification$ICustomNotification.class
│ │ │ │ │ ├── DownloadNotification.class
│ │ │ │ │ ├── DownloadsDB$DownloadColumns.class
│ │ │ │ │ ├── DownloadsDB$DownloadsContentDBHelper.class
│ │ │ │ │ ├── DownloadsDB$MetadataColumns.class
│ │ │ │ │ ├── DownloadsDB.class
│ │ │ │ │ ├── DownloadThread$InnerState.class
│ │ │ │ │ ├── DownloadThread$RetryDownload.class
│ │ │ │ │ ├── DownloadThread$State.class
│ │ │ │ │ ├── DownloadThread$StopRequest.class
│ │ │ │ │ ├── DownloadThread.class
│ │ │ │ │ ├── HttpDateTime$TimeOfDay.class
│ │ │ │ │ ├── HttpDateTime.class
│ │ │ │ │ ├── V14CustomNotification.class
│ │ │ │ │ └── V3CustomNotification.class
│ │ │ │ ├── IStub.class
│ │ │ │ └── SystemFacade.class
│ │ │ └── licensing
│ │ │ ├── AESObfuscator.class
│ │ │ ├── APKExpansionPolicy.class
│ │ │ ├── DeviceLimiter.class
│ │ │ ├── ILicenseResultListener$Stub$Proxy.class
│ │ │ ├── ILicenseResultListener$Stub.class
│ │ │ ├── ILicenseResultListener.class
│ │ │ ├── ILicensingService$Stub$Proxy.class
│ │ │ ├── ILicensingService$Stub.class
│ │ │ ├── ILicensingService.class
│ │ │ ├── LicenseChecker$ResultListener$1.class
│ │ │ ├── LicenseChecker$ResultListener$2.class
│ │ │ ├── LicenseChecker$ResultListener.class
│ │ │ ├── LicenseCheckerCallback.class
│ │ │ ├── LicenseChecker.class
│ │ │ ├── LicenseValidator.class
│ │ │ ├── NullDeviceLimiter.class
│ │ │ ├── Obfuscator.class
│ │ │ ├── Policy.class
│ │ │ ├── PreferenceObfuscator.class
│ │ │ ├── ResponseData.class
│ │ │ ├── ServerManagedPolicy.class
│ │ │ ├── StrictPolicy.class
│ │ │ ├── util
│ │ │ │ ├── Base64.class
│ │ │ │ └── Base64DecoderException.class
│ │ │ └── ValidationException.class
│ │ └── unity3d
│ │ └── plugin
│ │ └── downloader
│ │ ├── BuildConfig.class
│ │ ├── R$attr.class
│ │ ├── R$drawable.class
│ │ ├── R$id.class
│ │ ├── R$layout.class
│ │ ├── R$string.class
│ │ ├── R$style.class
│ │ ├── R.class
│ │ ├── UnityAlarmReceiver.class
│ │ ├── UnityDownloaderActivity$1.class
│ │ ├── UnityDownloaderActivity$2.class
│ │ ├── UnityDownloaderActivity$3.class
│ │ ├── UnityDownloaderActivity.class
│ │ └── UnityDownloaderService.class
│ ├── proguard.txt
│ ├── res
│ │ └── crunch
│ │ ├── drawable-hdpi
│ │ │ └── notify_panel_notification_icon_bg.png
│ │ └── drawable-mdpi
│ │ └── notify_panel_notification_icon_bg.png
│ ├── R.txt
│ └── unitydownloaderactivity.jar
├── build.xml
├── gen
│ └── com
│ └── unity3d
│ └── plugin
│ └── downloader
│ ├── BuildConfig.java
│ └── R.java
├── local.properties
├── proguard.cfg
├── project.properties
├── res
│ ├── drawable-hdpi
│ │ └── notify_panel_notification_icon_bg.png
│ ├── drawable-mdpi
│ │ └── notify_panel_notification_icon_bg.png
│ ├── layout
│ │ ├── main.xml
│ │ └── status_bar_ongoing_event_progress_bar.xml
│ ├── layout-v11
│ │ └── status_bar_ongoing_event_progress_bar.xml
│ ├── values
│ │ ├── main-strings.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ ├── values-v11
│ │ └── styles.xml
│ └── values-v9
│ └── styles.xml
└── src
└── com
│ └── android
│ └── vending
│ ├── expansion
│ │ └── downloader
│ │ ├── Constants.java
│ │ ├── DownloaderClientMarshaller.java
│ │ ├── DownloaderServiceMarshaller.java
│ │ ├── DownloadProgressInfo.java
│ │ ├── Helpers.java
│ │ ├── IDownloaderClient.java
│ │ ├── IDownloaderService.java
│ │ ├── impl
│ │ │ ├── AndroidHttpClient.java
│ │ │ ├── CustomIntentService.java
│ │ │ ├── CustomNotificationFactory.java
│ │ │ ├── DownloaderService.java
│ │ │ ├── DownloadInfo.java
│ │ │ ├── DownloadNotification.java
│ │ │ ├── DownloadsDB.java
│ │ │ ├── DownloadThread.java
│ │ │ ├── HttpDateTime.java
│ │ │ ├── V14CustomNotification.java
│ │ │ └── V3CustomNotification.java
│ │ ├── IStub.java
│ │ └── SystemFacade.java
│ └── licensing
│ ├── AESObfuscator.java
│ ├── APKExpansionPolicy.java
│ ├── DeviceLimiter.java
│ ├── ILicenseResultListener.java
│ ├── ILicensingService.java
│ ├── LicenseCheckerCallback.java
│ ├── LicenseChecker.java
│ ├── LicenseValidator.java
│ ├── NullDeviceLimiter.java
│ ├── Obfuscator.java
│ ├── Policy.java
│ ├── PreferenceObfuscator.java
│ ├── ResponseData.java
│ ├── ServerManagedPolicy.java
│ ├── StrictPolicy.java
│ ├── util
│ │ ├── Base64DecoderException.java
│ │ └── Base64.java
│ └── ValidationException.java
└── unity3d
└── plugin
└── downloader
├── UnityAlarmReceiver.java
├── UnityDownloaderActivity.java
└── UnityDownloaderService.java
45 directories, 150 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论