android修改MTP及MTP(PC显示名称)、PTP盘符名、蓝牙名称

本文是基于Android5.1的代码

PTP修改:

路径:frameworks\av\media\mtp\MtpServer.cpp

if (mPtp) {
// no extensions
string.set("AGR720");     //此处写默认值
} else {
// MTP extensions
string.set("microsoft.com: 1.0; android.com: 1.0;");
}

MTP修改:

MTP在PC端显示的名称:

路径:frameworks\base\media\java\android\mtp\MtpDatabase.java

String deviceName;
deviceName = SystemProperties.get("ro.product.name");
deviceName="AGR720";        //此处写默认值

修改蓝牙名称:

路径:device\generic\common\bluetooth\bdroid_buildcfg.h

#ifndef _BDROID_BUILDCFG_H
#define _BDROID_BUILDCFG_H
#define BTM_DEF_LOCAL_NAME "" //此处是默认的蓝牙
#endif  

路径:device\mediatek\common\custom.conf

bluetooth.HostName = AGR720    //也可以修改此处

路径:vendor\mediatek\proprietary\frameworks\base\custom\custom.conf

bluetooth.HostName = AGR720 //也可以修改此处    

你可能感兴趣的:(Android,MTK,Android,MTK)