close

既然有了配備(355 - 禮物 Acer A1-840 ),就開好好來運用一下。

要連上 device 作測試,要進行以下動作:

 

Device:

  1. 文件上是寫:Settings > About phone > Build number 上按七下, 出現 Developer options,我是用中文版的,試了一下才知道是:設定 > 關於平板電腦 > 版本號碼 上按七下, 回上一頁會出現 開發人員選項。


Android Studiio端:要設成可以 debug,以下兩種設定作一種即可

  1. 在 AndroidMainfest.xml 裡, 在 <application> 裡加上 android:debuggable="true",或者
  2. 在 project 目錄下有 build.gradle. 裡頭要有以下設定(build.gradle 是新的 build 的設定檔,不過我試著加入這個設定時,又會接到抱怨說有問題)
android {
   buildTypes {
      debug {
         debuggable true
      }
   }
}

開發主機(Windows):
  • 直接用 USB 線連接 device 和電腦,會找到不認識的硬體
  • 安裝 device 的 USB driver,剛才的硬體會變成 可攜式裝置
  • 到 sdk\platform-tools 下執行 adb devices,會看到
C:\Program Files (x86)\Android\android-studio\sdk\platform-tools>adb devices 
List of devices attached
430003937412    unauthorized
  • 在 device 上會看到要求 authorize 的訊息
  • 作完後再回到 PC 端執行 adb devices,會看到
C:\Program Files (x86)\Android\android-studio\sdk\platform-tools>adb devices
List of devices attached
430003937412    device
  • 回到 Android Studio 上,執行 Run 或 Debug,在跳出的視窗上選擇 device,則 Android Studio 會把程式安裝到 device 上,就可以開始執行了。

 

IMG_1378.JPG  

之前寫的測試程式

arrow
arrow
    文章標籤
    Android develop Android studio
    全站熱搜
    創作者介紹
    創作者 屁啦屁啦 的頭像
    屁啦屁啦

    玩小車的小屁孩爸

    屁啦屁啦 發表在 痞客邦 留言(0) 人氣()