Skip to content

Commit

Permalink
Merge pull request #68 from NordicSemiconductor/dev
Browse files Browse the repository at this point in the history
Preparing for release v1.0.3
  • Loading branch information
roshanrajaratnam authored Sep 21, 2018
2 parents f1a3187 + 06a55de commit 386f2c4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Example/nrf-mesh/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ android {
applicationId "no.nordicsemi.android.nrfmeshprovisioner"
minSdkVersion 18
targetSdkVersion 28
versionCode 12
versionName "1.0.2"
versionCode 13
versionName "1.0.3"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
vectorDrawables.useSupportLibrary = true
Expand Down
4 changes: 2 additions & 2 deletions android-nrf-mesh-library/meshprovisioner/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ android {
defaultConfig {
minSdkVersion 18
targetSdkVersion 28
versionCode 12
versionName "1.0.2"
versionCode 13
versionName "1.0.3"
}

buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
public class VendorModelMessageUnacknowledged extends VendorModelMessageState {

private static final String TAG = VendorModelMessageUnacknowledged.class.getSimpleName();
private static final int VENDOR_MODEL_OPCODE_LENGTH = 4;

private final MeshModel mMeshModel;
private final int mAszmic;
Expand Down Expand Up @@ -49,11 +48,6 @@ public MessageState getState() {
* Creates the access message to be sent to the node
*/
private void createAccessMessage() {
ByteBuffer paramsBuffer;
paramsBuffer = ByteBuffer.allocate(parameters.length).order(ByteOrder.LITTLE_ENDIAN);
paramsBuffer.put(parameters);


final byte[] key = MeshParserUtils.toByteArray(mMeshModel.getBoundAppkeys().get(mAppKeyIndex));
int akf = 1;
int aid = SecureUtils.calculateK4(key);
Expand Down

0 comments on commit 386f2c4

Please sign in to comment.