我已经根据自己和这里发现的所有内容重命名了一个项目,但它只有一点点。
它似乎已重命名,但是当您检查设备中的应用信息或卸载它时,旧名称仍然存在。
如何进行完全重命名?
旧名称是WifiHome,我想将其重命名为Wifi Sentinel。
的build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "org.grenderg.wifisentinel"
minSdkVersion 14
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.0.+'
compile 'com.android.support:gridlayout-v7:22.0.0'
compile 'com.android.support:palette-v7:22.0.0'
compile 'com.android.support:recyclerview-v7:22.0.0'
compile 'com.android.support:cardview-v7:22.0.0'
compile 'com.android.support:support-v4:22.0.0'
}
的AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.grenderg.wifisentinel" >
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:allowBackup="true"
android:icon="@mipmap/icon"
android:label="@string/appName"
android:theme="@style/WifiSentinel">
<activity
android:name="org.grenderg.wifisentinel.activities.BaseActivity"
android:label="@string/appName"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name="org.grenderg.wifisentinel.services.WifiScanService"
android:enabled="true"
android:exported="false" >
</service>
</application>
</manifest>
appName = Wifi Sentinel
在任何地方重命名,但不在此处重命名:
答案 0 :(得分:1)
答案 1 :(得分:0)
app文件夹中有一个build.gradle文件。你必须在那里更改applicationId,也可以从AndroidManifest文件中修改它。然后将您的项目与gradle同步,清理并重建它。
答案 2 :(得分:0)
以前使用旧名称安装te app的设备似乎是一个错误,我试图安装在我从未安装过应用程序并且名称显示正确的设备上。
答案 3 :(得分:0)
在其他人建议重构重命名和gradle文件编辑之后:
现在,您必须取消选中“离线工作”。
在您的comp上启用网络。
清理项目(Build =&gt; Clean Project)+运行它。 你看到它重新命名app_name / label再次检查“离线工作” (在android studio 1.2.2上制作了这些)
答案 4 :(得分:0)
我也有这个问题,没有错误,但安装的apk有旧名称,但在测试游戏时,我注意到操作栏上的旧名称,这给了我答案的线索,
转到资源文件夹,然后转到值文件夹,然后打开strings.xml文件。在这里你应该看到这样的东西:
<resources>
<string name="app_name">Rhg Timecard</string>
将此(在我的情况下是Rhg Timecard)更改为您的新名称。 你现在应该全力以赴。
答案 5 :(得分:0)