草庐IT

install-write

全部标签

android - 应用程序启动前未收到 INSTALL_REFERRER

我想在我自己的接收器上捕获INSTALL_REFERRERIntent。我实现了接收器publicclassInstallReferrerReceiverextendsBroadcastReceiver{@OverridepublicvoidonReceive(Contextcontext,Intentintent){Log.d("Broadcast","RECEIVED!");}}并在list中添加当我想测试接收器时,我安装我的应用程序(不启动)并通过adb发送广播ambroadcast-acom.android.vending.INSTALL_REFERRER--es"referr

mysql - 用户 'root' @'localhost' 的访问被拒绝(使用密码 : YES) after new installation on Ubuntu

今天我以root身份登录Ubuntu14.04.1LTSll然后是apt-getinstallmariadb-server(没有sudo但作为root)。与mySQL-hlocalhost-uroot--password=我得到了Accessdeniedforuser'root'@'localhost'(usingpassword:YES)与mySQL-uroot-p我登录了数据库并做了GRANTALLPRIVILEGESON*.*TO'root'@'localhost'IDENTIFIEDBY'';FLUSHALLPRIVILEGES;但这并没有帮助。你有什么想法吗?我没有找到类似问

mysql - 用户 'root' @'localhost' 的访问被拒绝(使用密码 : YES) after new installation on Ubuntu

今天我以root身份登录Ubuntu14.04.1LTSll然后是apt-getinstallmariadb-server(没有sudo但作为root)。与mySQL-hlocalhost-uroot--password=我得到了Accessdeniedforuser'root'@'localhost'(usingpassword:YES)与mySQL-uroot-p我登录了数据库并做了GRANTALLPRIVILEGESON*.*TO'root'@'localhost'IDENTIFIEDBY'';FLUSHALLPRIVILEGES;但这并没有帮助。你有什么想法吗?我没有找到类似问

java - 找不到处理 Intent {act=android.settings.action.MANAGE_WRITE_SETTINGS

当我这样做时我的应用程序崩溃了:if(Build.VERSION.SDK_INT>=Build.VERSION_CODES.M){if(Settings.System.canWrite(ListOfTerminalsActivity.this)){//Dostuffhere}else{Intentintent=newIntent(android.provider.Settings.ACTION_MANAGE_WRITE_SETTINGS);intent.setData(Uri.parse("package:"+getPackageName()));intent.addFlags(Int

android - 安装 Kotlin Android 项目失败并显示 INSTALL_FAILED_DEXOPT

尝试使用AndroidStudio运行KotlinAndroid项目编译成功并生成APK,但当Studio尝试在设备上安装APK时,安装失败并显示INSTALL_FAILED_DEXOPT。通过logcat,我可以看到类似于以下内容的消息:12-1322:43:57.219:ERROR/dalvikvm(1623):Out-of-ordermethod_idx:0x2bffthen0x2bff12-1322:43:57.219:ERROR/dalvikvm(1623):Troublewithitem897@offset0x13e49812-1322:43:57.219:ERROR/da

android - 错误 -505 INSTALL_FAILED_DUPLICATE_PERMISSION :

我正在开发一个安卓VOIP拨号器。我无法在设备中安装当前应用程序和旧应用程序。01-0712:05:05.115:E/Finsky(28214):[1]PackageInstallerImpl$2.onReceive:Error-505whileinstallingcom.current.app:INSTALL_FAILED_DUPLICATE_PERMISSION:Packagecom.current.appattemptingtoredeclarepermissionandroid.permission.CONFIGURE_SIPalreadyownedbycom.old.appl

android - 尝试安装 Layar401.apk 时出现失败 [INSTALL_FAILED_MISSING_SHARED_LIBRARY]

我已经从网上下载了Layar401.apk文件,并尝试将其安装到我的android设备(HTCMagic、Android2.2)中。但是每次我尝试安装它时都会说:adbinstallLayar401.apk1098KB/s(1855698bytesin1.649s)pkg:/data/local/tmp/Layar401.apkFailure[INSTALL_FAILED_MISSING_SHARED_LIBRARY]从其他帖子中,我发现manifest.xml文件中可能缺少Googlemapsapi的共享库。我试图查看manifest.xml文件,它给了我如下内容:package:n

java - "W/AudioFlinger( 34): write blocked for 70 msecs, 2236 delayed writes, thread "是什么意思?

我有一个monodroid应用程序,它同时播放几个声音,日志中有很多这样的消息。什么意思?W/AudioFlinger(34):writeblockedfor84msecs,2153delayedwrites,thread0xc658W/AudioFlinger(34):writeblockedfor69msecs,2182delayedwrites,thread0xc658W/AudioFlinger(34):writeblockedfor76msecs,2205delayedwrites,thread0xc658W/AudioFlinger(34):writeblockedfor7

android - 什么是 'action android:name="com.android.vending.INSTALL_REFERRER"'?

我已经测试了AppbrainSDK和InmobiSDK。我找到了这个普通接收器。我制作了定制接收器。我以为在谷歌市场下载应用程序时,谷歌市场会向我的应用程序发送“推荐人”值。但是我没有收到任何东西。什么问题?//ThisisAppbrain'sreceiver//ThisisInmobi'sreceiver//ThisisMyCustomreceiver//sourcepublicclassTestReceiverextendsBroadcastReceiver{publicstaticfinalStringTAG="TEST";StringreferrerString="";@Ove

android - 广播 INSTALL_REFERRER Intent

问题是我无法在接收器中获取引荐来源网址。在list文件中,我有类似的东西:adb广播命令:adbshellambroadcast-acom.android.vending.INSTALL_REFERRER-napp/app.InstallReceiver--es"referrer""utm_source=testSource&utm_medium=testMedium&utm_term=testTerm&utm_content=testContent&utm_campaign=testCampaign"在InstallReceiver类中:@OverridepublicvoidonRe