y-polek / TransmissionRemote

Remote control for Transmission BitTorrent client
Apache License 2.0
167 stars 38 forks source link

Building the project #95

Closed simba83 closed 5 years ago

simba83 commented 5 years ago

Hi, Im trying to build this project to make some test with a small amount of changes but i got into some problems while trying to compile the original master git. I use Latest Android Studio (Win10 x64) Is it not possible to compile a build without the api_keys.properties file?

`FAILURE: Build failed with an exception.

BUILD FAILED in 0s 'api_keys.properties' file does not exist Open File 16:39:05: Task execution finished. `

y-polek commented 5 years ago

@simba83 to resolve this you have to add your own Fabric API key. To do this: 1) Go to Fabric install guide, to the section "Add Your API Key" and login/sign up 2) Copy value of generated API Key from tag.

      <meta-data
          android:name="io.fabric.ApiKey"
          android:value="<FABRIC_API_KEY>"
      />

3) Create file api_keys.properties with following content in project root folder: fabric_api_key=FABRIC_API_KEY where FABRIC_API_KEY should be replaced with value copied from tag. 4) Sync Project again (File -> Sync Project with Gradle Files)

simba83 commented 5 years ago

Thank you for the help, got things working.