Skip to content

Commit

Permalink
refactor: Rename SentryLog module into Sentry
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinBoulongne committed Oct 21, 2024
1 parent 350f4ca commit d73d135
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

android {
namespace = "com.infomaniak.sentrylog"
namespace = "com.infomaniak.sentry"
compileSdk = 34

defaultConfig {
Expand All @@ -30,5 +30,5 @@ android {
}

dependencies {
implementation(sentrylog.sentry.android)
api(core2.sentry.android)
}
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.infomaniak.sentrylog
package com.infomaniak.sentry

import android.util.Log
import io.sentry.Breadcrumb
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ sentry {
}

dependencies {
implementation(project(":Core2:SentryLog"))
implementation(project(":Core2:Sentry"))
implementation(project(":FileTypes"))
implementation(kotlin("reflect"))

Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ dependencyResolutionManagement {
maven { url = uri("https://jitpack.io") }
}
versionCatalogs {
create("sentrylog") { from(files("Core2/SentryLog/gradle/sentrylog.versions.toml")) }
create("core2") { from(files("Core2/gradle/core2.versions.toml")) }
create("filetypes") { from(files("FileTypes/gradle/filetypes.versions.toml")) }
}
}

rootProject.name = "android-SwissTransfer"
include(":app")
include(":Core2")
include(":Core2:SentryLog")
include(":Core2:Sentry")
include(":FileTypes")

0 comments on commit d73d135

Please sign in to comment.