There are two possible ways to accomplish this:
1. By creating your own certificate
Create your own certificate by following the steps outlined here using the java standdown file key
http://developer.android.com/tools/publishing/app-signing.html#cert
Now share your certificate between the machines and configure it to build in a build.gradle file like this
android {
signingConfigs {
debug {
storeFile file("debug.keystore")
}
myConfig {
storeFile file("other.keystore")
storePassword "certificate_password_here"
keyAlias "alias_key_here"
keyPassword "key_password_here"
}
}
buildTypes {
yourbuildtypename {
debuggable true
jniDebugBuild true
signingConfig signingConfigs.myConfig
}
}
}
" " , , .
Windows,
C:\Users\your_user_name\.android\debug.keystore
- , . , buildType, , .
2. :
, . .