Android Studio - Deploys my app without new changes
问题 My problem is basically that Android Studio wont deploy my app with my changes in the new code. Heres my case scenario: I have a wifi direct code working like this (just testing with its methods): public void peerDiscovery(){ mWifiDirectManager.discoverPeers(mChannel, new WifiP2pManager.ActionListener() { @Override public void onSuccess() { Log.v(TAG,"Discovery Peers Success"); } @Override public void onFailure(int reason) { Log.e(TAG,"Error on Discovery Peers, code: "+reason); } }); } The