Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob

Run CySmart Source Code on Android Studio 3.1 - KBA 224169

Run CySmart Source Code on Android Studio 3.1 - KBA 224169

Community-Team
Employee
Employee
50 questions asked 10 questions asked 5 questions asked

Version: **

Translation - Japanese: Android Studio 3.1でCySmartソースコードを実行する - KBA 224169 - Community Translated (JA)

Question:

The CySmart source code is based on the Android Studio 1.3.1. How can I run the source code on a newer version of Android Studio?

Answer:

CySmart is a Bluetooth Low Energy (BLE) utility developed by Cypress which can be used with any BLE products using standard Bluetooth Sig-adopted or custom BLE profiles and service. You can get the apk file and source file of CySmart from the Cypress website.

You can develop your own apps based on CySmart using the Android Studio because Cypress has provided the source code for your reference. When you try to run the CySmart source code, you may find some errors because the source code is developed on a previous version of Android Studio. You need to make some changes before you run the CySmart apps source code. Follow these steps to run the apps source code on Android Studio 3.1, which is the latest version as of now:

  1. Install the Android Studio 3.1 and java environment.
  2. Select the Android SDK platform and open the CySmart source file with the Android Studio. The Android Studio will automatically try to sync the gradle, but will fail because of the unsupported method.
  3. Open the build.gradle file, and change the Android Plugin version to 2.3.2.
  4. You may also need to change the mavenCentral() to jcenter, if the Android Studio is unable to find gradle file.
    pastedImage_3.pngpastedImage_4.png
  5. Open gradle-wrapper.properties and change the gradle version in distributionUrl to 3.3.
    pastedImage_5.pngpastedImage_6.png
  6. In the build.gradle file, change the buildToolsVersion to 25.0.0.
    pastedImage_7.pngpastedImage_8.png
  7. In the Android Studio, click Try Again for the Gradle to sync. Then, click Run.
    pastedImage_12.png

    Now you can run the CySmart on the Android Studio 3.1 successfully
0 Likes
780 Views
Contributors