我有开发分支和主分支,我的开发分支现在很混乱,我想重置它并将其作为我的主分支的副本。我不确定将 master 合并到开发中是否会使它们变得相同。尝试合并后,我遇到了很多冲突,我使用以下方法解决了它们:
git merge origin/master
git checkout
Run Code Online (Sandbox Code Playgroud)
这足以让开发分支成为与 master 相同的副本吗
我正在使用cordova-plugin-local-notifications
插件.现在我有问题在Android和iOS上获取我的声音文件.
window.plugin.notification.local.add({
id: '0001',
date: new Date,
message: 'hello',
title: 'title',
badge: 1,
sound: 'www/resources/audio/beep.mp3',
autoCancel: true,
ongoing: true
});
Run Code Online (Sandbox Code Playgroud)
我需要做什么我需要在原生方面改变我的应用程序在sencha touch.